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