public AuthenticationService()
 {
     _shopRepository = new WebShopRepository <User>();
 }
Beispiel #2
0
 public CatalogService()
 {
     _shopRepository = new WebShopRepository <Product>();
 }
Beispiel #3
0
 public OrderService()
 {
     _orderRepository     = new WebShopRepository <Order>();
     _orderListRepository = new WebShopRepository <ProductOrderList>();
 }