13 lines
454 B
C#
13 lines
454 B
C#
using FruitBank.Common.Dtos;
|
|
using FruitBank.Common.Entities;
|
|
using Mango.Nop.Core.Dtos;
|
|
using Mango.Nop.Core.Interfaces;
|
|
using Nop.Core.Domain.Catalog;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IOrderItemDto : IMgOrderItemDto<ProductDto>, IMeasuringNetWeight, IMeasured, IMeasurable
|
|
{
|
|
public List<OrderItemPallet> OrderItemPallets { get; set; }
|
|
public void InitializeOrderItemPallets(List<OrderItemPallet> orderItemPallets);
|
|
} |