コード例 #1
0
 public UserController(IAuthRepository authRepo, IConfiguration config, jwwtContext context)
 {
     //_userLogic = userLogic;
     _context = context;
     _repo    = authRepo;
     _config  = config;
 }
コード例 #2
0
 public UnitOfWork(jwwtContext context)
 {
     _context = context;
 }
コード例 #3
0
 public HistoriesController(jwwtContext context)
 {
     _context = context;
 }
コード例 #4
0
 public CalamitiesController(ICalamityLogic calamityLogic, jwwtContext context)
 {
     _calamityLogic = calamityLogic;
     _context       = context;
 }
コード例 #5
0
 public RepositoryBase(jwwtContext dataContext)
 {
     Context = dataContext;
     _dbSet  = Context.Set <T>();
 }
コード例 #6
0
 public AuthRepository(jwwtContext context)
 {
     _context = context;
 }