Exemplo n.º 1
0
 public void AddVendor()
 {
     Vendor vendor = new Vendor(this);
     vendor.TimeOfService = this.time_of_service;
     vendors.Add(vendor);
 }
Exemplo n.º 2
0
 public void AddVendor(Vendor vendor)
 {
     vendor.TimeOfService = this.time_of_service;
     vendors.Add(vendor);
 }