2023-02-24 17:55:19 +04:00
|
|
|
|
using LawFirmContracts.BindingModels;
|
|
|
|
|
using LawFirmContracts.ViewModels;
|
|
|
|
|
using LawFirmDataModels.Enums;
|
|
|
|
|
using LawFirmDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace LawFirmDatabaseImplement.Models
|
|
|
|
|
{
|
|
|
|
|
public class Order : IOrderModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; private set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int DocumentId { get; private set; }
|
|
|
|
|
[Required]
|
2023-03-25 17:16:17 +04:00
|
|
|
|
public int ClientId { get; private set; }
|
|
|
|
|
[Required]
|
2023-02-24 17:55:19 +04:00
|
|
|
|
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; }
|
2023-03-10 20:47:22 +04:00
|
|
|
|
public virtual Document Document { get; set; }
|
2023-03-25 17:16:17 +04:00
|
|
|
|
public virtual Client Client { get; set; }
|
2023-02-24 17:55:19 +04:00
|
|
|
|
|
|
|
|
|
public static Order? Create(OrderBindingModel? model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return new Order
|
|
|
|
|
{
|
|
|
|
|
DocumentId = model.DocumentId,
|
2023-03-25 17:16:17 +04:00
|
|
|
|
ClientId = model.ClientId,
|
2023-02-24 17:55:19 +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-03-25 22:18:33 +04:00
|
|
|
|
public OrderViewModel GetViewModel {
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var context = new LawFirmDatabase();
|
|
|
|
|
return new ()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
DocumentId = DocumentId,
|
|
|
|
|
ClientId = ClientId,
|
|
|
|
|
Count = Count,
|
|
|
|
|
Sum = Sum,
|
|
|
|
|
DateCreate = DateCreate,
|
|
|
|
|
DateImplement = DateImplement,
|
|
|
|
|
Id = Id,
|
|
|
|
|
Status = Status,
|
|
|
|
|
DocumentName = context.Documents.FirstOrDefault(x => x.Id == DocumentId)?.DocumentName ?? string.Empty,
|
|
|
|
|
ClientFIO = context.Clients.FirstOrDefault(x => x.Id == ClientId)?.ClientFIO ?? string.Empty
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-24 17:55:19 +04:00
|
|
|
|
}
|
|
|
|
|
}
|