Ejemplo n.º 1
0
 public AuthController(IOptions <JwtConfig> config, ICommonFunctions commonFunctions, UserManager <ApplicationUser> userManager
                       , SignInManager <ApplicationUser> signInManager)
 {
     this.config          = config;
     this.commonFunctions = commonFunctions;
     this.userManager     = userManager;
     this.signInManager   = signInManager;
 }
 public IntegralResultPageViewModel(
     INavigationService navigationService,
     IPageDialogService pageDialogService,
     ICommonFunctions commonFunctions)
     : base(navigationService, pageDialogService)
 {
     _commonFunctions = commonFunctions;
 }
 public ContactPersonController(IContactPersonService contactPersonService, IAppServerService appServerService,
                                ICacheManage cacheManage, ICommonFunctions commonFunctions)
 {
     this.contactPersonService = contactPersonService;
     this.appServerService     = appServerService;
     this.cacheManage          = cacheManage;
     this.commonFunctions      = commonFunctions;
 }
Ejemplo n.º 4
0
 public ContactUsController(IServiceNowService serviceNowService, UserManager <ApplicationUser> userManager, IOptions <Configuration> config, IMapper mapper
                            , ICommonFunctions commonFunctions)
 {
     _serviceNowService   = serviceNowService;
     this.userManager     = userManager;
     this.config          = config;
     this.mapper          = mapper;
     this.commonFunctions = commonFunctions;
 }
 public SolveNonLinearEquationPageViewModel(
     INavigationService navigationService,
     IPageDialogService pageDialogService,
     ICommonFunctions commonFunctions)
     : base(navigationService, pageDialogService)
 {
     _commonFunctions = commonFunctions;
     GoToNonLinearChartPageCommand = GetBusyDependedCommand(GoToNonLinearChartPage);
 }
Ejemplo n.º 6
0
 public DefaultController(IParticipationService participationService, ICommonFunctions commonFunctions,
                          ICompetitionService competitionService, IFAQRepository fAQRepository, IMapper mapper,
                          ITermRepository termRepository)
 {
     this.participationService = participationService;
     this.commonFunctions      = commonFunctions;
     this.competitionService   = competitionService;
     this.fAQRepository        = fAQRepository;
     this.mapper         = mapper;
     this.termRepository = termRepository;
 }
Ejemplo n.º 7
0
 public AccountController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, IAccountService accountService, ICommonFunctions commonFunctions,
                          IOptions <Configuration> config, IMapper mapper, ILookupItemService lookupItemService, RoleManager <ApplicationRole> roleManager)
 {
     this.userManager       = userManager;
     this.signInManager     = signInManager;
     this.accountService    = accountService;
     this.commonFunctions   = commonFunctions;
     this.config            = config;
     this.mapper            = mapper;
     this.lookupItemService = lookupItemService;
     this.roleManager       = roleManager;
 }
Ejemplo n.º 8
0
 public AccountService(IMapper mapper, UserManager <ApplicationUser> userManager,
                       SignInManager <ApplicationUser> signInManager,
                       AppDBContext dbContext, IUnitOfWork uow, ICommonFunctions commonFunctions, RoleManager <ApplicationRole> roleManager, IOptions <Configuration> config
                       , IUserService userService)
 {
     this.mapper          = mapper;
     this.userManager     = userManager;
     this.signInManager   = signInManager;
     this.dbContext       = dbContext;
     this.uow             = uow;
     this.commonFunctions = commonFunctions;
     this.roleManager     = roleManager;
     this.config          = config;
     this.userService     = userService;
 }
Ejemplo n.º 9
0
 public LookupController(ILookupItemService lookupItemService, ICommonFunctions commonFunctions)
 {
     this.lookupItemService = lookupItemService;
     this.commonFunctions   = commonFunctions;
 }