ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDatabaseImplement/Models/Component.cs

61 lines
1.7 KiB
C#
Raw Normal View History

2024-04-07 17:24:16 +04:00
using SoftwareInstallationContracts.BindingModels;
using SoftwareInstallationContracts.ViewModels;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
2024-05-12 14:45:39 +04:00
using SoftwareInstallationDataModels.Models;
2024-04-07 17:24:16 +04:00
namespace SoftwareInstallationDatabaseImplement.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")]
2024-05-12 14:45:39 +04:00
public virtual List<PackageComponent> PackageComponents { get; set; } = new();
2024-04-07 17:24:16 +04:00
public static Component? Create(ComponentBindingModel model)
{
if (model == null)
{
return null;
}
return new Component()
{
Id = model.Id,
ComponentName = model.ComponentName,
Cost = model.Cost
};
}
2024-05-12 14:45:39 +04:00
2024-04-07 17:24:16 +04:00
public static Component Create(ComponentViewModel model)
{
return new Component
{
Id = model.Id,
ComponentName = model.ComponentName,
Cost = model.Cost
};
}
2024-05-12 14:45:39 +04:00
2024-04-07 17:24:16 +04:00
public void Update(ComponentBindingModel model)
{
if (model == null)
{
return;
}
ComponentName = model.ComponentName;
Cost = model.Cost;
}
2024-05-12 14:45:39 +04:00
2024-04-07 17:24:16 +04:00
public ComponentViewModel GetViewModel => new()
{
Id = Id,
ComponentName = ComponentName,
Cost = Cost
};
}
}