Esempio n. 1
0
 public ProductService(RichStoreDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Esempio n. 2
0
 public CategorieService(RichStoreDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Esempio n. 3
0
 public OrderService(RichStoreDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Esempio n. 4
0
 public ReceiptService(RichStoreDbContext dbContext, IOrderService orderService)
 {
     this.dbContext    = dbContext;
     this.orderService = orderService;
 }