Ejemplo n.º 1
0
 public AuthenticationService()
 {
     _shopRepository = new WebShopRepository <User>();
 }
Ejemplo n.º 2
0
 public CatalogService()
 {
     _shopRepository = new WebShopRepository <Product>();
 }
Ejemplo n.º 3
0
 public OrderService()
 {
     _orderRepository     = new WebShopRepository <Order>();
     _orderListRepository = new WebShopRepository <ProductOrderList>();
 }