2024-03-25 20:21:59 +04:00
|
|
|
|
using AbstractLawFirmContracts.BindingModels.BindingModels;
|
|
|
|
|
using AbstractLawFirmContracts.ViewModels;
|
|
|
|
|
using AbstractLawFirmDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using AbstractLawFirmDataBaseImplement.Models;
|
2024-04-09 23:28:01 +04:00
|
|
|
|
using AbstractLawFirmDatabaseImplement.Models;
|
2024-03-25 20:21:59 +04:00
|
|
|
|
|
|
|
|
|
namespace AbstractLawFirmDataBaseImplement.Models
|
|
|
|
|
{
|
|
|
|
|
public class Component : IComponentModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; private set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public string ComponentName { get; private set; } = string.Empty;
|
|
|
|
|
[Required]
|
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
[ForeignKey("ComponentId")]
|
|
|
|
|
public virtual List<DocumentComponent> DocumentComponents { get; set; } = new();
|
|
|
|
|
public static Component? Create(ComponentBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return new Component()
|
|
|
|
|
{
|
|
|
|
|
Id = model.Id,
|
|
|
|
|
ComponentName = model.ComponentName,
|
|
|
|
|
Cost = model.Cost
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
public static Component Create(ComponentViewModel model)
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|