Supplier.cs 303 B

1234567891011
  1. namespace ComputerShopWpf.Models
  2. {
  3. public class Supplier
  4. {
  5. public int SupplierId { get; set; }
  6. public string CompanyName { get; set; }
  7. public string ContactPerson { get; set; }
  8. public string Phone { get; set; }
  9. public string Address { get; set; }
  10. }
  11. }