PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopDatabaseImplement/Models/Order.cs

99 lines
2.5 KiB
C#
Raw Normal View History

2023-04-03 08:29:28 +04:00
using GiftShopContracts.BindingModels;
using GiftShopContracts.ViewModels;
using GiftShopDataModels.Enums;
using GiftShopDataModels.Models;
using System.ComponentModel.DataAnnotations;
namespace GiftShopDatabaseImplement.Models
{
public class Order : IOrderModel
{
public int Id { get; private set; }
public int GiftId { get; private set; }
2023-05-14 11:29:13 +04:00
[Required]
public int ClientId { get; set; }
2023-05-14 14:10:25 +04:00
public int? ImplementerId { get; private set; }
2023-05-14 11:29:13 +04:00
public string GiftName { get; private set; } = string.Empty;
2023-04-03 08:29:28 +04:00
[Required]
public int Count { get; private set; }
[Required]
public double Sum { get; private set; }
[Required]
public OrderStatus Status { get; private set; } = OrderStatus.Неизвестен;
[Required]
public DateTime DateCreate { get; private set; } = DateTime.Now;
public DateTime? DateImplement { get; private set; }
public virtual Gift Gift { get; set; }
2023-05-14 11:29:13 +04:00
public Client Client { get; set; }
2023-05-14 14:10:25 +04:00
public Implementer? Implementer { get; set; }
2023-05-14 11:29:13 +04:00
public static Order? Create(OrderBindingModel? model)
2023-04-03 08:29:28 +04:00
{
if (model == null)
{
return null;
}
return new Order()
{
Id = model.Id,
GiftId = model.GiftId,
2023-05-14 11:29:13 +04:00
ClientId = model.ClientId,
2023-05-14 14:10:25 +04:00
ImplementerId = model.ImplementerId,
2023-05-14 11:29:13 +04:00
GiftName = model.GiftName,
2023-04-03 08:29:28 +04:00
Count = model.Count,
Sum = model.Sum,
Status = model.Status,
DateCreate = model.DateCreate,
DateImplement = model.DateImplement
};
}
public void Update(OrderBindingModel? model)
{
if (model == null)
{
return;
2023-05-14 14:10:25 +04:00
}
Status = model.Status;
DateImplement = model.DateImplement;
ImplementerId = model.ImplementerId;
}
2023-04-03 08:29:28 +04:00
2023-05-14 11:29:13 +04:00
public OrderViewModel GetViewModel
{
get
{
using var context = new GiftShopDatabase();
return new OrderViewModel
{
Id = Id,
GiftId = GiftId,
ClientId = ClientId,
2023-05-14 14:10:25 +04:00
ImplementerId = ImplementerId,
2023-05-14 11:29:13 +04:00
ClientFIO = context.Clients.FirstOrDefault(x => x.Id == ClientId)?.ClientFIO ?? string.Empty,
GiftName = context.Gifts.FirstOrDefault(x => x.Id == GiftId)?.GiftName ?? string.Empty,
Count = Count,
Sum = Sum,
Status = Status,
DateCreate = DateCreate,
2023-05-14 14:10:25 +04:00
DateImplement = DateImplement,
ImplementerFIO = Implementer?.ImplementerFIO ?? string.Empty
2023-05-14 11:29:13 +04:00
};
}
}
}
2023-04-03 08:29:28 +04:00
}