2024-04-21 13:42:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AccountingWarehouseProductsDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IStandModel : IId
|
|
|
|
|
{
|
2024-04-21 19:17:40 +04:00
|
|
|
|
string StandName { get; }
|
2024-05-01 22:21:11 +04:00
|
|
|
|
string? DeliveryDate { get; }
|
2024-04-21 13:42:46 +04:00
|
|
|
|
|
|
|
|
|
int Count { get; }
|
|
|
|
|
|
|
|
|
|
int ProductId { get; }
|
|
|
|
|
|
2024-04-21 19:17:40 +04:00
|
|
|
|
int SupplierId { get; }
|
2024-04-21 13:42:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|