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