Beispiel #1
0
 public HomeController(ICategoryService categoryService, IArticleService articleService, IWorkAreaService workAreaService, IAppUserService appUserService)
 {
     _categoryService = categoryService;
     _articleService  = articleService;
     _workAreaService = workAreaService;
     _appUserService  = appUserService;
 }
Beispiel #2
0
 public AppUserController(IAppUserService appUserService)
 {
     _appUserService = appUserService;
 }
 public AccountController(IAppUserService userService)
 {
     _userService = userService;
 }
Beispiel #4
0
 /// <summary>
 /// constructor
 /// </summary>
 /// <param name="ganjoorService"></param>
 /// <param name="appUserService"></param>
 /// <param name="httpContextAccessor"></param>
 public GanjoorController(IGanjoorService ganjoorService, IAppUserService appUserService, IHttpContextAccessor httpContextAccessor)
 {
     _ganjoorService      = ganjoorService;
     _appUserService      = appUserService;
     _httpContextAccessor = httpContextAccessor;
 }
 public SearchController(IAppUserService appUserService) => this._userService = appUserService;
Beispiel #6
0
 public GrafikController(IAppUserService appUserService)
 {
     _appUserService = appUserService;
 }
 public AboutComponent(IAppUserService appUserService, IMapper mapper, ISocialMediaIconService socialMediaIconService)
 {
     _appUserService         = appUserService;
     _mapper                 = mapper;
     _socialMediaIconService = socialMediaIconService;
 }
 public UserController(UserManager <AppUser> userManager, RoleManager <AppRole> roleManager, IEmailSender emailSender, IAppUserService userService)
 {
     _userManager = userManager;
     _roleManager = roleManager;
     _emailSender = emailSender;
     _userService = userService;
 }
 public UserController(UserManager <AppUser> userManager, IAppUserService appUserService)
 {
     _userManager    = userManager;
     _appUserService = appUserService;
 }
 public UserSessionController(IAppUserService appUserService)
 {
     _appUserService = appUserService;
 }
 public AppUserUpdateVmValidationService(IAppUserService appUserService)
 {
     _appUserService = appUserService;
 }
Beispiel #12
0
 public FollowUser(IAppUserService userService,
                   IFollowService followService)
 {
     _userService   = userService;
     _followService = followService;
 }
Beispiel #13
0
 public CompanyService(DataContext context, IMapper mapper, IAppUserService userService)
 {
     _context     = context;
     _mapper      = mapper;
     _userService = userService;
 }
Beispiel #14
0
 public ScheduleController(ILogger <ScheduleController> log, IScheduleJobService scheduleJobService, IAppUserService appUserService)
 {
     this.log = log;
     this.scheduleJobService = scheduleJobService;
     this.appUserService     = appUserService;
 }
 public SocialMediaIconTagHelper(IAppUserService appUserService, ISocialMediaIconService socialMediaIconService, IMapper mapper)
 {
     _appUserService         = appUserService;
     _socialMediaIconService = socialMediaIconService;
     _mapper = mapper;
 }
Beispiel #16
0
 public SemesterService(IUnitOfWork <SchoolDBContext> unitOfWork,
                        IAppUserService appUserService)
 {
     _unitOfWork     = unitOfWork;
     _appUserService = appUserService;
 }
 public FeedsController(UserManager <AppUser> userManager, INotificationService notificationService, IAppUserService appUserService)
 {
     _userManager         = userManager;
     _notificationService = notificationService;
     _appUserService      = appUserService;
 }
 public AppUserController(UserManager <AppUser> userManager, IMapper mapper, IHostingEnvironment env, IAppUserService appUserService,
                          IAuthorizationService authorizationService, SignInManager <AppUser> signInManager)
 {
     _userManager          = userManager;
     _mapper               = mapper;
     _env                  = env;
     _appUserService       = appUserService;
     _authorizationService = authorizationService;
     _signInManager        = signInManager;
 }
 public AboutComponent(IAppUserService appUserService, IMapper mapper)
 {
     _appUserService = appUserService;
     _mapper         = mapper;
 }
 public UsersController(IAppUserService userService)
 {
     UserService = userService;
 }
 public AuthController(IAppUserService appUserService, IJwtService jwtService)
 {
     _appUserService = appUserService;
     _jwtService     = jwtService;
 }
 public EventController(IEventService eventService, UserManager <AppUser> userManager, IAppUserService appUserService)
 {
     _eventService   = eventService;
     _userManager    = userManager;
     _appUserService = appUserService;
 }
Beispiel #23
0
 public AppUserController(MyContext context, IAppUserService service)
 {
     _context = context;
     _service = service;
 }
        public TokenController(IConfiguration configuration, ITokenService tokenService, IAppUserService appUserService, SignInManager <AppUser> signInManager, IAppRoleService appRoleService)
        {
            _configuration  = configuration;
            _tokenService   = tokenService;
            _appUserService = appUserService;
            _signInManager  = signInManager;
            _appRoleService = appRoleService;

            JsonSettings = new JsonSerializerSettings()
            {
                Formatting = Formatting.Indented
            };
        }
Beispiel #25
0
 public AuthService(IAppUserService appUserService, SignInManager <AppUser> signInManager, IConfiguration configuration)
 {
     _appUserService = appUserService;
     _signInManager  = signInManager;
     _configuration  = configuration;
 }
Beispiel #26
0
 public SearchPatternService(IMapper mapper, IAppUserService userService, DataContext context)
 {
     _mapper      = mapper;
     _context     = context;
     _userService = userService;
 }
Beispiel #27
0
 public ChartController(IAppUserService appUserService)
 {
     _appUserService = appUserService;
 }
Beispiel #28
0
 public AuthController(IJwtService jwtService, IAppUserService appUserService, IMapper mapper)
 {
     _jwtService     = jwtService;
     _appUserService = appUserService;
     _mapper         = mapper;
 }
Beispiel #29
0
 public CompanyController(ICompanyService companyService, UserManager <AppUser> userManager, IAppUserService appUserService)
 {
     _userManager    = userManager;
     _companyService = companyService;
     _appUserService = appUserService;
 }
 public ProfileSummary(IAppUserService appUserService) => this._appUserService = appUserService;