74 lines
2.2 KiB
C#
74 lines
2.2 KiB
C#
|
using AutomobilePlantContracts.BindingModels;
|
|||
|
using AutomobilePlantContracts.ViewModel;
|
|||
|
using AutomobilePlantDataModels.Enums;
|
|||
|
using AutomobilePlantDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AutomobilePlantDataBaseImplements.Models
|
|||
|
{
|
|||
|
public class Order : IOrderModel
|
|||
|
{
|
|||
|
public int Id { get; private set; }
|
|||
|
[Required]
|
|||
|
public int CarId { get; private set; }
|
|||
|
public string CarName { get; private set; }
|
|||
|
public Car car { get; private set; }
|
|||
|
[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.SpecifyKind(DateTime.Now, DateTimeKind.Utc);
|
|||
|
public DateTime? DateImplement { get; private set; }
|
|||
|
|
|||
|
public static Order? Create(OrderBindingModel? model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
return new Order()
|
|||
|
{
|
|||
|
Id = model.Id,
|
|||
|
CarId = model.CarId,
|
|||
|
CarName = model.CarName,
|
|||
|
Count = model.Count,
|
|||
|
Sum = model.Sum,
|
|||
|
Status = model.Status,
|
|||
|
DateCreate = model.DateCreate,
|
|||
|
DateImplement = model.DateImplement
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
public void Update(OrderBindingModel? model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
Status = model.Status;
|
|||
|
DateImplement = model.DateImplement;
|
|||
|
}
|
|||
|
|
|||
|
public OrderViewModel GetViewModel => new()
|
|||
|
{
|
|||
|
Id = Id,
|
|||
|
CarId = CarId,
|
|||
|
CarName = CarName,
|
|||
|
Count = Count,
|
|||
|
Sum = Sum,
|
|||
|
Status = Status,
|
|||
|
DateCreate = DateCreate,
|
|||
|
DateImplement = DateImplement
|
|||
|
};
|
|||
|
}
|
|||
|
}
|