AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsDataModels/Models/IStandModel.cs

21 lines
397 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 IStandModel : IId
{
string StandName { get; }
2024-05-01 22:21:11 +04:00
string? DeliveryDate { get; }
int Count { get; }
int ProductId { get; }
int SupplierId { get; }
}
}