2023-03-20 08:43:09 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using TravelCompanyContracts.BindingModels;
|
|
|
|
|
using TravelCompanyContracts.ViewModels;
|
|
|
|
|
using TravelCompanyDataModels.Enums;
|
|
|
|
|
using TravelCompanyDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace TravelCompanyDatabaseImplement.Models
|
|
|
|
|
{
|
|
|
|
|
public class Order : IOrderModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; private set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int TravelId { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public OrderStatus Status { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public DateTime DateCreate { get; set; }
|
|
|
|
|
public DateTime? DateImplement { get; set; }
|
|
|
|
|
public Travel Travel { get; set; }
|
2023-04-28 00:02:22 +04:00
|
|
|
|
[Required]
|
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
|
public virtual Client Client { get; set; } = new();
|
2023-03-20 08:43:09 +04:00
|
|
|
|
|
2023-04-28 00:02:22 +04:00
|
|
|
|
public static Order? Create(OrderBindingModel? model, TravelCompanyDatabase context)
|
2023-03-20 08:43:09 +04:00
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return new Order()
|
|
|
|
|
{
|
|
|
|
|
Id = model.Id,
|
|
|
|
|
TravelId = model.TravelId,
|
|
|
|
|
Count = model.Count,
|
|
|
|
|
Sum = model.Sum,
|
|
|
|
|
Status = model.Status,
|
|
|
|
|
DateCreate = model.DateCreate,
|
2023-04-28 00:02:22 +04:00
|
|
|
|
DateImplement = model.DateImplement,
|
|
|
|
|
ClientId = model.ClientId,
|
|
|
|
|
Client = context.Clients.First(x => x.Id == model.ClientId),
|
2023-03-20 08:43:09 +04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
public void Update(OrderBindingModel? model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Status = model.Status;
|
|
|
|
|
if (model.DateImplement.HasValue) DateImplement = model.DateImplement;
|
|
|
|
|
}
|
|
|
|
|
public OrderViewModel GetViewModel => new()
|
|
|
|
|
{
|
|
|
|
|
Id = Id,
|
|
|
|
|
TravelId = TravelId,
|
|
|
|
|
Count = Count,
|
|
|
|
|
Sum = Sum,
|
|
|
|
|
Status = Status,
|
|
|
|
|
DateCreate = DateCreate,
|
2023-04-28 00:02:22 +04:00
|
|
|
|
DateImplement = DateImplement,
|
|
|
|
|
ClientId = ClientId,
|
|
|
|
|
ClientFIO = Client.ClientFIO,
|
2023-03-20 08:43:09 +04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|