public ProductDataManager(ProductAPIDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #2
0
 public AuthenticateService(IOptions <AppSettings> appSettings, ProductAPIDbContext context)
 {
     _appSettings = appSettings.Value;
     _context     = context;
 }