Пример #1
0
 public ApplicationUserController(IApplicationGroupService appGroupService, IApplicationRoleService appRoleService,
                                  ApplicationUserManager userManager, IErrorService errorService) : base(errorService)
 {
     _appRoleService  = appRoleService;
     _appGroupService = appGroupService;
     _userManager     = userManager;
 }
Пример #2
0
 public ApplicationRoleController(IApplicationGroupService appGroupService,
                                  IApplicationRoleService appRoleService
                                  )
 {
     this._appGroupService = appGroupService;
     this._appRoleService  = appRoleService;
 }
Пример #3
0
 public ApplicationUserController(IApplicationGroupService appGroupService,
                                  IApplicationRoleService appRoleService,
                                  ApplicationUserManager userManager)
 {
     this._userManager     = userManager;
     this._appGroupService = appGroupService;
     this._appRoleService  = appRoleService;
 }
Пример #4
0
 public InitiativeController(IErrorService errorService, ApplicationUserManager userManager, IApplicationGroupService applicationGroupService,
                             IInitiativeService initiativeService, IApplicationRoleService appRoleService) : base(errorService)
 {
     this._initiativeService       = initiativeService;
     this._applicationGroupService = applicationGroupService;
     this._appRoleService          = appRoleService;
     _userManager = userManager;
 }
Пример #5
0
 public ApplicationGroupController(IErrorService errorService, IApplicationRoleService appRoleService,
                                   ApplicationUserManager userManager, IApplicationGroupService appGroupService) : base(errorService)
 {
     this._appGroupService = appGroupService;
     this._appRoleService  = appRoleService;
     this._userManager     = userManager;
     this._mapper          = AutoMapperConfiguration.Configure();
 }
Пример #6
0
 public ApplicationGroupController(IErrorService errorService,
                                   IApplicationRoleService applicationRoleService,
                                   IApplicationGroupService applicationGroupService,
                                   ApplicationUserManager applicationUserManager) : base(errorService)
 {
     _applicationGroupService = applicationGroupService;
     _applicationRoleService  = applicationRoleService;
     _applicationUserManager  = applicationUserManager;
 }
Пример #7
0
 public AccountController(ApplicationUserManager userManager,
                          ApplicationSignInManager signInManager,
                          IApplicationGroupService appGroupService,
                          IApplicationRoleService appRoleService)
 {
     UserManager      = userManager;
     SignInManager    = signInManager;
     _appGroupService = appGroupService;
     _appRoleService  = appRoleService;
 }
 public ApplicationGroupController(
     ErrorService errorService,
     IApplicationGroupService applicationGroupService,
     IApplicationRoleService applicationRoleService,
     ApplicationUserManager userManager) : base(errorService)
 {
     this._applicationGroupService = applicationGroupService;
     this._applicationRoleService  = applicationRoleService;
     this._userManager             = userManager;
 }
Пример #9
0
 public UserController(
     IApplicationGroupService appGroupService,
     IApplicationRoleService appRoleService,
     ApplicationUserManager userManager
     )
     : base()
 {
     _appRoleService  = appRoleService;
     _appGroupService = appGroupService;
     _userManager     = userManager;
 }
Пример #10
0
 public ApplicationAdminController(IErrorService errorService,
                                   ApplicationUserManager userManager,
                                   IApplicationGroupService appGroupService,
                                   IApplicationRoleService appRoleService,
                                   IApplicationUserService appUserService) : base(errorService)
 {
     this._userManager     = userManager;
     this._appGroupService = appGroupService;
     this._appRoleService  = appRoleService;
     this._appUserService  = appUserService;
 }
 public ApplicationUserController(
     ErrorService errorService,
     ApplicationUserManager userManager,
     IApplicationGroupService applicationGroupService,
     IApplicationRoleService applicationRoleService,
     IDuAnService duAnService) : base(errorService)
 {
     this._userManager             = userManager;
     this._applicationGroupService = applicationGroupService;
     this._applicationRoleService  = applicationRoleService;
     this._duanService             = duAnService;
 }
 public ApplicationUserController(
     ApplicationUserManager applicationUserManager,
     IApplicationRoleServie applicationRoleService,
     IApplicationGroupService applicationGroupService,
     IErrorService errorService,
     IMapper mapper)
     : base(errorService, mapper)
 {
     this._applicationUserManager  = applicationUserManager;
     this._applicationRoleService  = applicationRoleService;
     this._applicationGroupService = applicationGroupService;
 }
Пример #13
0
 //private IChucVuService _chucVuService;
 //private ICoSoService _coSoService;
 public ApplicationUserController(
     IApplicationGroupService appGroupService,
     IApplicationRoleService appRoleService,
     //IChucVuService chucVu,
     //ICoSoService coSo,
     ApplicationUserManager userManager,
     IErrorService errorService)
     : base(errorService)
 {
     _appRoleService  = appRoleService;
     _appGroupService = appGroupService;
     _userManager     = userManager;
     //_chucVuService = chucVu;
     //_coSoService = coSo;
 }
Пример #14
0
 public ApplicationGroupController(IErrorService errorService,
                                   IApplicationGroupService appGroupService,
                                   IApplicationRoleService appRoleService,
                                   INewCategoryService newCategoryService,
                                   ApplicationUserManager userManager,
                                   IApplicationCateGroupRepository applicationCateGroup,
                                   IUnitOfWork unitOfWork) : base(errorService)
 {
     this._appGroupService      = appGroupService;
     this._appRoleService       = appRoleService;
     this._newCategoryService   = newCategoryService;
     this._userManager          = userManager;
     this._applicationCateGroup = applicationCateGroup;
     this._unitOfWork           = unitOfWork;
 }
Пример #15
0
 public ApplicationUserController(
     IApplicationGroupService appGroupService,
     IApplicationRoleService appRoleService,
     ApplicationUserManager userManager,
     IPOService poService,
     IApplicationUserService userService,
     ITransactionDetailService transactionDetailService,
     IErrorService errorService)
     : base(errorService)
 {
     _appRoleService           = appRoleService;
     _appGroupService          = appGroupService;
     _userManager              = userManager;
     _transactionDetailService = transactionDetailService;
     _poService   = poService;
     _userService = userService;
 }
Пример #16
0
        public ApplicationGroupController(
            UserManager <ApplicationUser> userManager,
            SignInManager <ApplicationUser> signInManager,
            IOptions <IdentityCookieOptions> identityCookieOptions,
            ILoggerFactory loggerFactory, IOptions <JwtIssuerOptions> jwtOptions, RoleManager <IdentityRole> roleManager, ILoggingRepository loggingRepository, IApplicationGroupService appGroupService, IApplicationRoleService appRoleService)
        {
            _userManager       = userManager;
            _signInManager     = signInManager;
            _roleManager       = roleManager;
            _loggingRepository = loggingRepository;
            _appGroupService   = appGroupService;
            _appRoleService    = appRoleService;


            _externalCookieScheme = identityCookieOptions.Value.ExternalCookieAuthenticationScheme;
            _logger     = loggerFactory.CreateLogger <AccountController>();
            _jwtOptions = jwtOptions.Value;
        }
 public ApplicationRoleController(IErrorService errorService,
                                  IApplicationRoleService appRoleService, IApplicationGroupService appGroupService) : base(errorService)
 {
     this._appRoleService  = appRoleService;
     this._appGroupService = appGroupService;
 }
Пример #18
0
 public ApplicationGroupController(IApplicationGroupService appGroup)
 {
     _appGroupService = appGroup;
 }