예제 #1
0
 public ProfilesController(UserManager <ApplicationUser> usersManager, IApplicationUsersService usersService, IUploadService uploadService, IConfiguration configuration)
 {
     this.usersManager  = usersManager;
     this.usersService  = usersService;
     this.uploadService = uploadService;
     this.configuration = configuration;
 }
예제 #2
0
 public PostRepliesController(IForumsService forumsService, IPostsService postsService, IApplicationUsersService usersService, UserManager <ApplicationUser> usersManager)
 {
     this.forumsService = forumsService;
     this.postsService  = postsService;
     this.usersService  = usersService;
     this.usersManager  = usersManager;
 }
예제 #3
0
 public HomeController(IApplicationUsersService applicationUsersService, ITraceManager traceManager, ILocalizedStrings localizedStrings,
                       ILocalizationManager localizationManager)
     : base(localizationManager)
 {
     _applicationUsersService = applicationUsersService;
     _traceManager            = traceManager;
     _localizedStrings        = localizedStrings;
 }
예제 #4
0
 public UtilsController(IApplicationUsersService applicationUsersService, ITraceManager traceManager, ILocalizedStrings localizedStrings, IAPIHttpClient apiHttpClient,
                        ILocalizationManager localizationManager)
     : base(localizationManager)
 {
     _applicationUsersService = applicationUsersService;
     _traceManager            = traceManager;
     _localizedStrings        = localizedStrings;
     _apiHttpClient           = apiHttpClient;
 }
예제 #5
0
 public DashboardController(
     IArticleDeletionRequestsService articleDeletionRequestsService,
     IAdminRequestsService adminRequestsService,
     IApplicationUsersService applicationUsersService)
 {
     this.articleDeletionRequestsService = articleDeletionRequestsService;
     this.adminRequestsService           = adminRequestsService;
     this.applicationUsersService        = applicationUsersService;
 }
예제 #6
0
 public SideBarViewComponent(
     IAscentsService ascentsService,
     IBouldersService bouldersService,
     IApplicationUsersService usersService)
 {
     this.ascentsService  = ascentsService;
     this.bouldersService = bouldersService;
     this.usersService    = usersService;
 }
예제 #7
0
 public LicenseController(IApplicationUsersService applicationUsersService, ITraceManager traceManager, IAPIHttpClient apiHttpClient, ISystemInformationService systemInformationService,
                          ILocalizationManager localizationManager)
     : base(localizationManager)
 {
     _applicationUsersService  = applicationUsersService;
     _apiHttpClient            = apiHttpClient;
     _systemInformationService = systemInformationService;
     _traceManager             = traceManager;
 }
예제 #8
0
 public CollectReportsJob(ISecurityContext securityContext,
                          INotificationService notificationService,
                          IApplicationUsersService applicationUsersService,
                          IPrepareService prepareService)
 {
     _securityContext         = securityContext;
     _notificationService     = notificationService;
     _applicationUsersService = applicationUsersService;
     _prepareService          = prepareService;
 }
예제 #9
0
        public SyncingJob(ITraceManager traceManager, IApplicationUsersService applicationUsersService, IAPIHttpClient apiHttpClient, IPrepareService prepareService)
        {
#if DEBUG
            OfflineFilesPath = @"..\..\..\..\Kprocess.KL2.TabletClient\bin\Debug\SyncFiles\Offline";
#endif

            _traceManager   = traceManager;
            _apiHttpClient  = apiHttpClient;
            _prepareService = prepareService;
        }
예제 #10
0
 public AccountController(ILanguageStorageProvider languageStorageProvider,
                          ILocalizedStrings localizedStrings,
                          IAPIHttpClient apiHttpClient,
                          IApplicationUsersService applicationUsersService,
                          ILocalizationManager localizationManager)
     : base(localizationManager)
 {
     _languageStorageProvider = languageStorageProvider;
     _apiHttpClient           = apiHttpClient;
     _applicationUsersService = applicationUsersService;
 }
예제 #11
0
 public EditsController(
     IEditsService editsService,
     IArticlesService articlesService,
     IFilesService filesService,
     IApplicationUsersService applicationUsersService)
 {
     this.editsService            = editsService;
     this.articlesService         = articlesService;
     this.filesService            = filesService;
     this.applicationUsersService = applicationUsersService;
 }
 public HomeController(
     ICategoriesService categoriesService,
     IApplicationUsersService usersService,
     IJobsService jobsService,
     ICloudinaryService clodinaryService)
 {
     this.categoriesService = categoriesService;
     this.usersService      = usersService;
     this.jobsService       = jobsService;
     this.clodinaryService  = clodinaryService;
 }
예제 #13
0
 public ActionController(IPrepareService prepareService,
                         IApplicationUsersService applicationUsersService,
                         IReferentialsService referentialsService,
                         ILocalizationManager localizationManager
                         )
     : base(localizationManager)
 {
     _prepareService          = prepareService;
     _applicationUsersService = applicationUsersService;
     _referentialsService     = referentialsService;
 }
예제 #14
0
 public DashboardController(
     IJobsService jobsService,
     UserManager <ApplicationUser> userManager,
     ICategoriesService categoriesService,
     IApplicationUsersService usersService,
     IEmailSender emailSender)
 {
     this.jobsService       = jobsService;
     this.userManager       = userManager;
     this.categoriesService = categoriesService;
     this.usersService      = usersService;
     this.emailSender       = emailSender;
 }
예제 #15
0
 public DashboardController(
     IApplicationUsersService applicationUsersService,
     ICandidatesService candidatesService,
     IEmployersService employersService,
     IJobOffersService jobOffersService,
     IJobApplicationService jobApplicationService)
 {
     this.applicationUsersService = applicationUsersService;
     this.candidatesService       = candidatesService;
     this.employersService        = employersService;
     this.jobOffersService        = jobOffersService;
     this.jobApplicationService   = jobApplicationService;
 }
 public DashboardController(
     IApplicationUsersService usersService,
     UserManager <ApplicationUser> userManager,
     ICoursesService coursesService,
     ISkillsService skillsService,
     ICloudinaryService cloudinary)
 {
     this.usersService   = usersService;
     this.userManager    = userManager;
     this.coursesService = coursesService;
     this.skillsService  = skillsService;
     this.cloudinary     = cloudinary;
 }
예제 #17
0
 public ProfilesController(
     IApplicationUsersService applicationUsersService,
     IFollowsService followsService,
     IAdminRequestsService adminRequestsService,
     UserManager <ApplicationUser> userManager,
     IBadgesService badgesService)
 {
     this.applicationUsersService = applicationUsersService;
     this.followsService          = followsService;
     this.adminRequestsService    = adminRequestsService;
     this.userManager             = userManager;
     this.badgesService           = badgesService;
 }
예제 #18
0
 public AccountController(ApplicationUserManager userManager,
                          ApplicationSignInManager signInManager,
                          IAPIHttpClient apiHttpClient,
                          IApplicationUsersService applicationUsersService,
                          ILocalizationManager localizationManager
                          )
     : base(localizationManager)
 {
     UserManager              = userManager;
     SignInManager            = signInManager;
     _apiHttpClient           = apiHttpClient;
     _applicationUsersService = applicationUsersService;
 }
 public ConversationsController(
     IConversationsService conversationsService,
     IMessagesService messagesService,
     IApplicationUsersService applicationUsersService,
     IFollowsService followsService,
     IHubContext <ChatHub> chatHubContext)
 {
     this.conversationsService    = conversationsService;
     this.messagesService         = messagesService;
     this.applicationUsersService = applicationUsersService;
     this.followsService          = followsService;
     this.chatHubContext          = chatHubContext;
 }
예제 #20
0
 public QualificationController(
     IApplicationUsersService applicationUsersService,
     IPrepareService prepareService,
     IReferentialsService referentialsService,
     ITraceManager traceManager,
     ILocalizationManager localizationManager
     )
     : base(localizationManager)
 {
     _applicationUsersService = applicationUsersService;
     _prepareService          = prepareService;
     _referentialsService     = referentialsService;
     _traceManager            = traceManager;
 }
예제 #21
0
 public DashboardController(
     ICategoriesService categoriesService,
     IJobsService jobsService,
     IApplicationUsersService usersService,
     UserManager <ApplicationUser> userManager,
     RoleManager <ApplicationRole> roleManager,
     IEmailSender emailSender,
     ICloudinaryService cloudinaryService,
     Cloudinary cloudinary)
 {
     this.categoriesService = categoriesService;
     this.jobsService       = jobsService;
     this.usersService      = usersService;
     this.userManager       = userManager;
     this.roleManager       = roleManager;
     this.emailSender       = emailSender;
     this.cloudinaryService = cloudinaryService;
 }
예제 #22
0
 public UsersController(IApplicationUsersService usersService)
 {
     this.usersService = usersService;
 }
예제 #23
0
 /// <summary>
 /// UtilitiesController ctors
 /// </summary>
 public LicenseController(ITraceManager traceManager, IApplicationUsersService applicationUsersService)
 {
     _traceManager            = traceManager;
     _applicationUsersService = applicationUsersService;
 }
예제 #24
0
 public RankingController(IApplicationUsersService applicationUsersService)
 {
     this.applicationUsersService = applicationUsersService;
 }
예제 #25
0
 /// <summary>
 /// ApplicationUsersServiceController ctors
 /// </summary>
 /// <param name="applicationUsersService"></param>
 /// <param name="securityContext"></param>
 public ApplicationUsersServiceController(ITraceManager traceManager, IApplicationUsersService applicationUsersService, ISecurityContext securityContext)
 {
     _traceManager            = traceManager;
     _applicationUsersService = applicationUsersService;
     _securityContext         = securityContext;
 }
예제 #26
0
 public AccountController(IAPIHttpClient apiHttpClient, IApplicationUsersService applicationUsersService, ILocalizationManager localizationManager)
     : base(localizationManager)
 {
     _apiHttpClient           = apiHttpClient;
     _applicationUsersService = applicationUsersService;
 }
 public ApplicationUsersController(IApplicationUsersService applicationUsersService)
 {
     _applicationUsersService = applicationUsersService;
 }
예제 #28
0
 public TemplatesController(ITemplatesService templatesService, IApplicationUsersService usersService)
 {
     this.templates = templatesService;
     this.users     = usersService;
 }
예제 #29
0
 public AuthenticationService()
 {
     propertiesService       = DependencyService.Get <IPropertiesService>();
     dialogService           = DependencyService.Get <IDialogService>();
     applicationUsersService = DependencyService.Get <IApplicationUsersService>();
 }
예제 #30
0
 public TripsService(ApplicationDbContext db, ICartsService cartsServices, IApplicationUsersService applicationUsersServices)
 {
     this.db                       = db;
     this.cartsServices            = cartsServices;
     this.applicationUsersServices = applicationUsersServices;
 }