ISEbd-21_Chegodaev_A.Y._Law.../LawFirm/LawFirmListImplement/Models/Component.cs

48 lines
1.2 KiB
C#
Raw Normal View History

2024-05-10 23:48:48 +04:00
using LawFirmContracts.BindingModels.BindingModels;
2024-04-13 01:58:54 +04:00
using LawFirmContracts.ViewModels;
using LawFirmDataModels.Models;
2024-05-10 23:48:48 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-13 01:58:54 +04:00
namespace LawFirmListImplement.Models
{
public class Component : IComponentModel
{
public int Id { get; private set; }
public string ComponentName { get; private set; } = string.Empty;
public double Cost { get; set; }
public static Component? Create(ComponentBindingModel? model)
{
if (model == null)
{
return null;
}
return new Component()
{
Id = model.Id,
ComponentName = model.ComponentName,
Cost = model.Cost
};
}
public void Update(ComponentBindingModel? model)
{
if (model == null)
{
return;
}
ComponentName = model.ComponentName;
Cost = model.Cost;
}
public ComponentViewModel GetViewModel => new()
{
Id = Id,
ComponentName = ComponentName,
Cost = Cost
};
2024-05-10 23:48:48 +04:00
2024-04-13 01:58:54 +04:00
}
2024-05-10 23:48:48 +04:00
}