Customer.cs 881 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model
  6. {
  7. public class Customer:BaseModel
  8. {
  9. private string customerCode;
  10. private string customerName;
  11. private string postalCode;
  12. private string address;
  13. private string contract;
  14. private string contractPhone;
  15. public string CustomerCode { get => customerCode; set => customerCode = value; }
  16. public string PostalCode { get => postalCode; set => postalCode = value; }
  17. public string Address { get => address; set => address = value; }
  18. public string Contract { get => contract; set => contract = value; }
  19. public string ContractPhone { get => contractPhone; set => contractPhone = value; }
  20. public string CustomerName { get => customerName; set => customerName = value; }
  21. }
  22. }