2023-03-12 16:32:00 +04:00
|
|
|
|
using AutomobilePlantContracts.BindingModels;
|
|
|
|
|
using AutomobilePlantContracts.ViewModels;
|
|
|
|
|
using AutomobilePlantDataModels.Enums;
|
|
|
|
|
using AutomobilePlantDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
2023-03-27 00:58:58 +04:00
|
|
|
|
using System.Reflection.Metadata;
|
2023-03-12 16:32:00 +04:00
|
|
|
|
using System.Runtime.ConstrainedExecution;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantDatabaseImplement.Models
|
|
|
|
|
{
|
|
|
|
|
public class Order : IOrderModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; private set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int CarId { get; private set; }
|
|
|
|
|
|
2023-03-27 00:58:58 +04:00
|
|
|
|
[Required]
|
|
|
|
|
public int ClientId { get; private set; }
|
2023-04-09 23:59:17 +04:00
|
|
|
|
public int? ImplementerId { get; private set; }
|
2023-03-12 16:32:00 +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 Car Car { get; private set; }
|
2023-03-27 00:58:58 +04:00
|
|
|
|
public virtual Client Client { get; set; }
|
2023-04-09 23:59:17 +04:00
|
|
|
|
public Implementer? Implementer { get; private set; }
|
2023-03-12 16:32:00 +04:00
|
|
|
|
|
|
|
|
|
public static Order? Create(OrderBindingModel? model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return new Order
|
|
|
|
|
{
|
|
|
|
|
CarId = model.CarId,
|
2023-03-27 00:58:58 +04:00
|
|
|
|
ClientId = model.ClientId,
|
2023-04-09 23:59:17 +04:00
|
|
|
|
ImplementerId = model.ImplementerId,
|
2023-03-12 16:32:00 +04:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
Status = model.Status;
|
|
|
|
|
DateImplement = model.DateImplement;
|
2023-04-09 23:59:17 +04:00
|
|
|
|
ImplementerId = model.ImplementerId;
|
2023-03-12 16:32:00 +04:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 00:58:58 +04:00
|
|
|
|
public OrderViewModel GetViewModel
|
2023-03-12 16:32:00 +04:00
|
|
|
|
{
|
2023-03-27 00:58:58 +04:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
CarId = CarId,
|
|
|
|
|
ClientId = ClientId,
|
2023-04-09 23:59:17 +04:00
|
|
|
|
ImplementerId = ImplementerId,
|
2023-03-27 00:58:58 +04:00
|
|
|
|
Count = Count,
|
|
|
|
|
Sum = Sum,
|
|
|
|
|
DateCreate = DateCreate,
|
|
|
|
|
DateImplement = DateImplement,
|
|
|
|
|
Id = Id,
|
|
|
|
|
Status = Status,
|
2023-04-23 16:03:47 +04:00
|
|
|
|
CarName = Car?.CarName ?? string.Empty,
|
|
|
|
|
ClientFIO = Client?.ClientFIO ?? string.Empty,
|
2023-04-20 21:11:54 +04:00
|
|
|
|
ImplementerFIO = Implementer?.ImplementerFIO ?? string.Empty,
|
|
|
|
|
};
|
2023-03-27 00:58:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-12 16:32:00 +04:00
|
|
|
|
}
|
|
|
|
|
}
|