CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataBaseImplement/Models/Product.cs

61 lines
1.6 KiB
C#
Raw Normal View History

2024-04-29 01:55:20 +04:00
using ElectronicsShopContracts.BindingModels;
using ElectronicsShopContracts.ViewModels;
2024-05-25 13:06:38 +04:00
using ElectronicsShopDataModels.Enums;
2024-04-29 01:55:20 +04:00
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2024-04-30 21:59:22 +04:00
using System.ComponentModel.DataAnnotations.Schema;
2024-04-29 01:55:20 +04:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataBaseImplement.Models
{
public class Product : IProductModel
{
public int ID { get; set; }
2024-05-25 22:32:22 +04:00
2024-04-29 01:55:20 +04:00
[Required]
2024-05-25 22:32:22 +04:00
public string ProductName { get; set; } = string.Empty;
2024-04-29 01:55:20 +04:00
[Required]
public double Price { get; set; }
2024-05-25 22:32:22 +04:00
2024-05-25 13:06:38 +04:00
[ForeignKey("CostItemID")]
public int CostItemID { get; set; }
2024-04-29 01:55:20 +04:00
public static Product? Create(ProductBindingModel? model)
{
if (model == null)
{
return null;
}
2024-05-25 22:32:22 +04:00
return new Product() {
2024-04-29 01:55:20 +04:00
ID = model.ID,
ProductName = model.ProductName,
Price = model.Price,
2024-05-25 22:32:22 +04:00
CostItemID = model.CostItemID,
2024-04-29 01:55:20 +04:00
};
}
2024-05-25 22:32:22 +04:00
public void Update(ProductBindingModel? model)
2024-04-29 01:55:20 +04:00
{
if (model == null)
{
return;
}
ProductName = model.ProductName;
Price = model.Price;
2024-05-25 13:06:38 +04:00
CostItemID = model.CostItemID;
2024-04-29 01:55:20 +04:00
}
public ProductViewModel GetViewModel => new()
{
ID = ID,
ProductName = ProductName,
Price = Price,
2024-05-25 13:06:38 +04:00
CostItemID = CostItemID,
2024-04-29 01:55:20 +04:00
};
}
}