13 lines
348 B
C#
13 lines
348 B
C#
using FruitBank.Common.Dtos;
|
|
using Mango.Nop.Core.Dtos;
|
|
using Mango.Nop.Core.Interfaces;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IOrderDto : IMgOrderDto<OrderItemDto, ProductDto>, IMeasured, IMeasurable
|
|
{
|
|
DateTime? DateOfReceipt { get; }
|
|
DateTime DateOfReceiptOrCreated { get; }
|
|
|
|
string TimeOfReceiptText { get; }
|
|
} |