64 lines
2.0 KiB
C#
64 lines
2.0 KiB
C#
|
using SushiBarContracts.BindingModels;
|
|||
|
using SushiBarContracts.ViewModels;
|
|||
|
using SushiBarDataModels.Enums;
|
|||
|
using SushiBarDataModels.Models;
|
|||
|
|
|||
|
namespace SushiBarListImplement.Models
|
|||
|
{
|
|||
|
public class Order : IOrderModel
|
|||
|
{
|
|||
|
public int SushiId { get; private set; }
|
|||
|
public string SushiName { get; private set; } = string.Empty;
|
|||
|
public int Count { get; private set; }
|
|||
|
public double Sum { get; private set; }
|
|||
|
public OrderStatus Status { get; private set; } = OrderStatus.Неизвестен;
|
|||
|
public DateTime DateCreate { get; private set; } = DateTime.Now;
|
|||
|
public DateTime? DateImplement { get; private set; }
|
|||
|
public int Id { get; private set; }
|
|||
|
public static Order? Create(OrderBindingModel? model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
return new Order
|
|||
|
{
|
|||
|
SushiId = model.SushiId,
|
|||
|
SushiName = model.SushiName,
|
|||
|
Count = model.Count,
|
|||
|
Sum = model.Sum,
|
|||
|
Status = model.Status,
|
|||
|
DateCreate = model.DateCreate,
|
|||
|
DateImplement = model.DateImplement,
|
|||
|
Id = model.Id,
|
|||
|
};
|
|||
|
}
|
|||
|
public void Update(OrderBindingModel? model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
SushiId = model.SushiId;
|
|||
|
SushiName = model.SushiName;
|
|||
|
Count = model.Count;
|
|||
|
Sum = model.Sum;
|
|||
|
Status = model.Status;
|
|||
|
DateCreate = model.DateCreate;
|
|||
|
DateImplement = model.DateImplement;
|
|||
|
Id = model.Id;
|
|||
|
}
|
|||
|
public OrderViewModel GetViewModel => new()
|
|||
|
{
|
|||
|
SushiId = SushiId,
|
|||
|
SushiName = SushiName,
|
|||
|
Count = Count,
|
|||
|
Sum = Sum,
|
|||
|
DateCreate = DateCreate,
|
|||
|
DateImplement = DateImplement,
|
|||
|
Id = Id,
|
|||
|
Status = Status,
|
|||
|
};
|
|||
|
}
|
|||
|
}
|