PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopDatabaseImplement/Models/Component.cs

69 lines
1.8 KiB
C#
Raw Normal View History

2023-04-03 08:29:28 +04:00
using GiftShopDataModels.Models;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using GiftShopContracts.ViewModels;
using GiftShopContracts.BindingModels;
2023-06-03 01:27:48 +04:00
using System.Runtime.Serialization;
2023-04-03 08:29:28 +04:00
namespace GiftShopDatabaseImplement.Models
{
2023-06-03 01:27:48 +04:00
[DataContract]
public class Component : IComponentModel
2023-04-03 08:29:28 +04:00
{
2023-06-03 01:27:48 +04:00
[DataMember]
public int Id { get; private set; }
2023-04-03 08:29:28 +04:00
[Required]
2023-06-03 01:27:48 +04:00
[DataMember]
public string ComponentName { get; private set; } = string.Empty;
2023-04-03 08:29:28 +04:00
[Required]
2023-06-03 01:27:48 +04:00
[DataMember]
public double Cost { get; set; }
2023-04-03 08:29:28 +04:00
[ForeignKey("ComponentId")]
public virtual List<GiftComponent> GiftComponents { 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
};
}
}