예제 #1
0
 public PurchaseRepository(SnacksStoreContext context) : base(context)
 {
 }
 public UserRepository(SnacksStoreContext context, IOptions <AppSettings> appSettings) : base(context)
 {
     _appSettings = appSettings.Value;
 }
예제 #3
0
 public ProductRepository(SnacksStoreContext context) : base(context)
 {
 }
예제 #4
0
 public RolRepository(SnacksStoreContext context) : base(context)
 {
 }
예제 #5
0
 public Repository(SnacksStoreContext context)
 {
     _context = context;
 }