Esempio n. 1
0
 public AccountController(DbContextFakeCms dbContext, UserManager <User> userManager,
                          SignInManager <User> signInManager, IConfiguration configuration)
 {
     _dbContext     = dbContext;
     _userManager   = userManager;
     _signInManager = signInManager;
     _configuration = configuration;
 }
Esempio n. 2
0
 public UserRoleService(DbContextFakeCms dbContext)
 {
     _dbContext = dbContext;
 }
Esempio n. 3
0
 public UserService(IRepository repository, DbContextFakeCms dbContext)
 {
     _repository = repository;
     _dbContext  = dbContext;
 }
Esempio n. 4
0
 public StateService(IRepository repository, DbContextFakeCms dbContext, ITableService tableService)
 {
     _repository   = repository;
     _dbContext    = dbContext;
     _tableService = tableService;
 }
Esempio n. 5
0
 public RoleService(DbContextFakeCms dbContext, IRepository repository)
 {
     _dbContext  = dbContext;
     _repository = repository;
 }