Example #1
0
 public UserController(IUserManagementServices userService,
                       IMailManagementService mailService,
                       UserManager <BtUser> userManager,
                       RoleManager <BtRole> roleManager,
                       ILocationManagementService locationService,
                       StatisticsService statisticsService
                       )
 {
     _userManager      = userManager;
     _mailService      = mailService;
     _roleManager      = roleManager;
     _userService      = userService;
     _locationService  = locationService;
     _statisticService = statisticsService;
 }
 public AccountController(UserManager <BtUser> userManager, RoleManager <BtRole> roleManager,
                          SignInManager <BtUser> signInManager, IMailManagementService emailSender,
                          ILogger <AccountController> logger, IHttpContextAccessor httpContextAccessor,
                          IDistributedCache memoryCache, IUserManagementServices userService, ILocationManagementService locationService,
                          ISeedingManagementService seedingService, IAccountManagementService accountService,
                          IMailManagementService mailService, IAuthUser authUser)
 {
     _userManager         = userManager;
     _roleManager         = roleManager;
     _memoryCache         = memoryCache;
     _emailSender         = emailSender;
     _userService         = userService;
     _locationService     = locationService;
     _signInManager       = signInManager;
     _logger              = logger;
     _httpContextAccessor = httpContextAccessor;
     _seedingService      = seedingService;
     _accountService      = accountService;
     _mailService         = mailService;
     _authUser            = authUser;
 }
Example #3
0
 public LocationManagementController(ILocationManagementService locationManagementService)
 {
     _locationManagementService = locationManagementService;
 }
Example #4
0
 public IndexModel(ILocationManagementService service)
 {
     locationManagementService = service;
 }