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