2024-04-21 15:33:17 +04:00
|
|
|
|
using AccountingWarehouseProductsDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AccountingWarehouseProductsContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ProductBindingModel : IProductModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ProductName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
|
2024-05-07 16:15:07 +04:00
|
|
|
|
public DateTime DateofFabrication { get; set; }
|
2024-05-01 22:21:11 +04:00
|
|
|
|
|
2024-05-07 16:15:07 +04:00
|
|
|
|
public DateTime? ValidUntil { get; set; }
|
2024-04-21 15:33:17 +04:00
|
|
|
|
|
|
|
|
|
public string Category { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|