23 lines
492 B
C#
Raw Normal View History

2024-03-30 14:30:43 +04:00
using BarDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BarDataModels.Models
{
public interface IOrderModel : IId
{
int CocktailId { get; }
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
2024-05-08 23:27:46 +04:00
int ClientId { get; }
2024-05-17 23:10:48 +04:00
int? ImplementerId { get; }
}
2024-03-30 14:30:43 +04:00
}