71 lines
2.1 KiB
C#
71 lines
2.1 KiB
C#
using AbstractLawFirmContracts.BindingModels;
|
||
using AbstractLawFirmContracts.ViewModels;
|
||
using AbstractLawFirmDataModels.Enums;
|
||
using AbstractLawFirmDataModels.Models;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AbstractLawFirmDatabaseImplement.Models
|
||
{
|
||
public class Order : IOrderModel
|
||
{
|
||
public int Id { get; private set; }
|
||
[Required]
|
||
public int DocumentId { 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.Now;
|
||
|
||
public DateTime? DateImplement { get; private set; }
|
||
public virtual Document Document { get; set; }
|
||
|
||
public static Order? Create(OrderBindingModel? model)
|
||
{
|
||
if (model == null)
|
||
{
|
||
return null;
|
||
}
|
||
return new Order
|
||
{
|
||
DocumentId = model.DocumentId,
|
||
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;
|
||
}
|
||
|
||
public OrderViewModel GetViewModel => new OrderViewModel
|
||
{
|
||
DocumentId = DocumentId,
|
||
Count = Count,
|
||
Sum = Sum,
|
||
DateCreate = DateCreate,
|
||
DateImplement = DateImplement,
|
||
Id = Id,
|
||
Status = Status,
|
||
DocumentName = Document?.DocumentName ?? string.Empty // Безопасное использование DocumentName
|
||
};
|
||
}
|
||
} |