public OperatorController(IRepoIdentity userRoleRepo, MembershipTools membershipTools, Operator_Repo operatorRepo, IHostingEnvironment hostingEnvironment)
 {
     _userRoleRepo       = userRoleRepo;
     _membershipTools    = membershipTools;
     _operatorRepo       = operatorRepo;
     _hostingEnvironment = hostingEnvironment;
 }
 public AccountController(IRepoIdentity userRoleRepo, MembershipTools membershipTools, RoleUserRepo roleUserRepo,
                          IHostingEnvironment hostingEnvironment)
 {
     _membershipTools    = membershipTools;
     _userRoleRepo       = userRoleRepo;
     _roleUserRepo       = roleUserRepo;
     _hostingEnvironment = hostingEnvironment;
 }
 public AccountController(IRepoIdentity userRoleRepo, IHttpContextAccessor httpContextAccessor, SignInManager <AppUser> signInManager)
 {
     _userRoleRepo        = userRoleRepo;
     _httpContextAccessor = httpContextAccessor;
     _signInManager       = signInManager;
 }
示例#4
0
 public AccountController(IRepoIdentity userRoleRepo)
 {
     _userRoleRepo = userRoleRepo;
 }