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