Example #1
0
 public UserRepository(BookStoreContext context)
 {
     this.dbContext = context;
 }
Example #2
0
 public OrderRepository(BookStoreContext dbContext, DiscountService discountService)
 {
     this.dbContext       = dbContext;
     this.discountService = discountService;
 }