ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreDatabaseImplement/Models/Component.cs
2024-04-30 20:06:35 +04:00

55 lines
1.7 KiB
C#

using ComputerHardwareStoreContracts.BindingModels;
using ComputerHardwareStoreContracts.ViewModels;
using ComputerHardwareStoreDataModels.Models;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ComputerHardwareStoreDatabaseImplement.Models
{
public class Component : IComponentModel
{
public int Id { get; private set; }
[Required]
public string Name { get; private set; } = string.Empty;
[Required]
public double Cost { get; set; }
[Required]
public virtual StoreKeeper? StoreKeeper { get; set; }
[NotMapped]
IStoreKeeperModel IComponentModel.StoreKeeper => throw new NotImplementedException();
[ForeignKey("ComponentId")]
public virtual List<ProductComponent> ProductComponents { get; set; } = new();
public static Component? Create(ComputerHardwareStoreDBContext context, ComponentBindingModel model)
{
if (model == null)
{
return null;
}
return new Component()
{
Id = model.Id,
Name = model.Name,
Cost = model.Cost,
StoreKeeper = context.StoreKeepers.First(x => x.Id == model.StoreKeeper.Id)
};
}
public void Update (ComponentBindingModel model)
{
if (model == null)
{
return;
}
Name = string.IsNullOrEmpty(model.Name) ? Name : model.Name;
Cost = model.Cost;
}
public ComponentViewModel GetViewModel => new()
{
Id = Id,
Name = Name,
Cost = Cost
};
}
}