54 lines
1.5 KiB
C#
54 lines
1.5 KiB
C#
|
using ComputerShopContracts.BindingModels;
|
|||
|
using ComputerShopContracts.ViewModels;
|
|||
|
using ComputerShopDataModels.Enums;
|
|||
|
using ComputerShopDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerShopDatabaseImplement.Models
|
|||
|
{
|
|||
|
internal class EquipmentReceiving : IEquipmentReceivingModel
|
|||
|
{
|
|||
|
|
|||
|
public DateTime? DateImplement { get; private set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
public EquipmentReceivingStatus Status { get; private set; } = EquipmentReceivingStatus.Неизвестен;
|
|||
|
|
|||
|
public static EquipmentReceiving? Create(EquipmentReceivingBindingModel? model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
return new EquipmentReceiving
|
|||
|
{
|
|||
|
Status = model.Status,
|
|||
|
DateImplement = model.DateImplement,
|
|||
|
Id = model.Id,
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
public void Update(EquipmentReceivingBindingModel? model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
Status = model.Status;
|
|||
|
DateImplement = model.DateImplement;
|
|||
|
}
|
|||
|
|
|||
|
public EquipmentReceivingViewModel GetViewModel => new()
|
|||
|
{
|
|||
|
DateImplement = DateImplement,
|
|||
|
Id = Id,
|
|||
|
Status = Status,
|
|||
|
};
|
|||
|
}
|
|||
|
}
|