21 lines
533 B
C#
21 lines
533 B
C#
using AccountingWarehouseProductsDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountingWarehouseProductsContracts.BindingModels
|
|
{
|
|
public class SupplierBindingModel : ISupplierModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string SupplierName { get; set; } = string.Empty;
|
|
|
|
public string ContactPerson { get; set; } = string.Empty;
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
}
|
|
}
|