using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NX.ERP.Model { public class Supplier:BaseModel { private string supplierCode; private string supplierName; private string address; private string contract; public string SupplierCode { get => supplierCode; set => supplierCode = value; } public string SupplierName { get => supplierName; set => supplierName = value; } public string Address { get => address; set => address = value; } public string Contract { get => contract; set => contract = value; } public string ContractPhone { get; set; } } }