PIAPS_CW/DatabaseImplement/Models/Product.cs

130 lines
3.2 KiB
C#
Raw Normal View History

2024-06-20 22:32:22 +04:00
using Contracts.BindingModels;
using Contracts.ViewModels;
using DataModels.Models;
using System;
2024-06-11 12:18:10 +04:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2024-06-11 12:18:10 +04:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Runtime.InteropServices.JavaScript.JSType;
2024-06-11 12:18:10 +04:00
namespace DatabaseImplement.Models
{
public class Product : IProduct
2024-06-11 12:18:10 +04:00
{
[Required]
public Guid Id { get; set; }
public Guid? SaleId { get; set; }
[Required]
public string Name { get; set; } = string.Empty;
[Required]
public double Price { get; set; }
[Required]
public double Rate { get; set; }
[Required]
public bool IsBeingSold { get; set; }
public string? Category { get; set; }
public string? Description { get; set; }
public virtual Sale? Sale { get; set; }
[Required]
public int Amount { get; set; }
2024-06-24 15:06:42 +04:00
[ForeignKey("ProductId")]
public virtual List<SellProducts> SellProducts { get; set; } = new();
public ProductBindingModel GetBindingModel() => new()
2024-06-20 22:32:22 +04:00
{
Id = Id,
Name = Name,
Price = Price,
Rate = Rate,
IsBeingSold = IsBeingSold,
Amount = Amount,
Category = Category,
Description = Description,
SaleId = SaleId
};
2024-06-20 22:32:22 +04:00
public static Product ToProductFromView(ProductViewModel model, Product product) => new()
{
Id = model.Id,
Name = model.Name,
Price = model.Price,
Rate = model.Rate,
2024-06-20 22:32:22 +04:00
IsBeingSold = model.IsBeingSold,
Amount = model.Amount,
Category = model.Category,
SaleId = model.SaleId
};
2024-06-20 22:32:22 +04:00
public static Product ToProductFromBinding(ProductBindingModel model, Product product) => new()
{
Id = model.Id,
Name = model.Name,
Price = model.Price,
Rate = model.Rate,
IsBeingSold = model.IsBeingSold,
Amount = model.Amount,
Description = model.Description,
Category = model.Category,
SaleId = model.SaleId
};
2024-06-20 22:32:22 +04:00
public static Product Create(Database context, ProductBindingModel model)
{
return new Product()
{
Id = model.Id,
Name = model.Name,
Price = model.Price,
Rate = model.Rate,
IsBeingSold = model.IsBeingSold,
Amount = model.Amount,
Description = model.Description,
Category = model.Category,
SaleId = model.SaleId
};
}
public void Update(ProductBindingModel model)
2024-06-20 22:32:22 +04:00
{
if (model is null)
{
throw new ArgumentNullException("Update product: binding model is null");
}
Name = model.Name;
Price = model.Price;
Rate = model.Rate;
IsBeingSold = model.IsBeingSold;
Amount = model.Amount;
Description = model.Description;
Category = model.Category;
SaleId = model.SaleId;
}
public ProductViewModel GetViewModel
{
get
{
double saleValue = 0;
if (Sale is not null)
saleValue = Sale.Value;
return new()
{
Id = Id,
Name = Name,
Price = Price,
IsBeingSold = IsBeingSold,
Rate = Rate,
Amount = Amount,
Description = Description,
Category = Category,
SaleId = SaleId,
ActualPrice = Price / 100 * (100 - saleValue)
};
}
}
}
2024-06-11 12:18:10 +04:00
}