AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsDataModels/Models/IProductModel.cs

22 lines
416 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountingWarehouseProductsDataModels.Models
{
public interface IProductModel : IId
{
string ProductName { get; }
double Cost { get; }
2024-05-07 16:15:07 +04:00
DateTime DateofFabrication { get; }
2024-05-01 22:21:11 +04:00
2024-05-07 16:15:07 +04:00
DateTime? ValidUntil { get; }
string Category { get; }
}
}