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 ISupplierModel : IId
|
|
|
|
|
{
|
2024-04-21 15:33:17 +04:00
|
|
|
|
string SupplierName { get; }
|
2024-04-21 13:42:46 +04:00
|
|
|
|
|
|
|
|
|
string ContactPerson { get; }
|
|
|
|
|
|
|
|
|
|
string Phone { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|