Esempio n. 1
0
 public static Shipper CreateShipper(int shipperID, string companyName)
 {
     Shipper shipper = new Shipper();
     shipper.ShipperID = shipperID;
     shipper.CompanyName = companyName;
     return shipper;
 }
Esempio n. 2
0
 public void AddToShippers(Shipper shipper)
 {
     base.AddObject("Shippers", shipper);
 }