예제 #1
0
 public AccountController(UserManager <Appuser> userMgr,
                          SignInManager <Appuser> signInMgr,
                          ContextMed ctx_,
                          AppIdentityDbContext ctxIdentity_)
 {
     userManager   = userMgr;
     signInManager = signInMgr;
     ctx           = ctx_;
     ctxIdentity   = ctxIdentity_;
 }
예제 #2
0
 public LogDetailsRepositoty(ContextMed dbContext_) : base(dbContext_)
 {
     ctx = dbContext_;
 }
예제 #3
0
 public IImageValueRepository(ContextMed dbContext_) : base(dbContext_)
 {
     ctx = dbContext_;
 }
예제 #4
0
 public CategoriRepo(ContextMed dbContext_) : base(dbContext_)
 {
     ctx = dbContext_;
 }
예제 #5
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, ContextMed dbContext_)
 {
     ctx     = dbContext_;
     _logger = logger;
 }
예제 #6
0
 public ProductRepository(ContextMed dbContext_) : base(dbContext_)
 {
     ctx = dbContext_;
 }
예제 #7
0
 public LogMasterRepository(ContextMed dbContext_) : base(dbContext_)
 {
     ctx = dbContext_;
 }
예제 #8
0
 public BaseRepository(ContextMed biz)
 {
     ctx = biz;
 }