public OutdoorPowerRepository(
     OutdoorPowerContext appDbContext,
     ILogger <OutdoorPowerRepository> logger
     )
 {
     _appDbContext = appDbContext;
     _logger       = logger;
 }
예제 #2
0
 public UserRepository(OutdoorPowerContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
 public FeedbackRepository(OutdoorPowerContext appDbContext)
 {
     _appDbContext = appDbContext;
 }