internal ShipperRepository(ShippingDb context) { this.db = context; }
internal DeliveryServiceRepository(ShippingDb context) { this.db = context; }
public ShipperRepository() { this.db = new ShippingDb(); }
public DeliveryServiceRepository() { this.db = new ShippingDb(); }