Example #1
0
 internal ShipperRepository(ShippingDb context)
 {
     this.db = context;
 }
Example #2
0
 internal DeliveryServiceRepository(ShippingDb context)
 {
     this.db = context;
 }
Example #3
0
 public ShipperRepository()
 {
     this.db = new ShippingDb();
 }
Example #4
0
 public DeliveryServiceRepository()
 {
     this.db = new ShippingDb();
 }