public UserController(UserManager <AppUser> userMgr,
                       IAppDataRepository repo, IHostingEnvironment hosting)
 {
     userManager        = userMgr;
     repository         = repo;
     hostingEnvironment = hosting;
 }
Beispiel #2
0
 public AdminController(IEmployeeRepository context, IWebHostEnvironment hostingEnvironment, IInfoRepository infoRepository, IAppDataRepository appRepository)
 {
     _context            = context;
     _hostingEnvironment = hostingEnvironment;
     _infoRepository     = infoRepository;
     _appRepository      = appRepository;
 }
 public GroupsController(IAppDataRepository repo, UserManager <AppUser> userMgr,
                         IHostingEnvironment hosting)
 {
     repository         = repo;
     userManager        = userMgr;
     hostingEnvironment = hosting;
 }
        public int viewCallBackItemsInPages = 20; // Callback items count in CallBackList page

        public AdminController(IUnitOfWork unitOfWork, IWebHostEnvironment hostingEnvironment, IInfoRepository infoRepository,
                               IAppAddressRepository addressRepository, IAppDataRepository appRepository)
        {
            _unitOfWork         = unitOfWork;
            _hostingEnvironment = hostingEnvironment;
            _infoRepository     = infoRepository;
            _addressRepository  = addressRepository;
            _appRepository      = appRepository;
        }
 public AdminController(
         IPlayerRepository repoPlayers,
         IClubRepository repoClubs,
         IPositionRepository repoPositions,
         IStatRepository repoStats,
         IAppDataRepository repoAppData)
 {
     repositoryPlayers = repoPlayers;
     repositoryClubs = repoClubs;
     repositoryPositions = repoPositions;
     repositoryStats = repoStats;
     repositoryAppData = repoAppData;
 }
Beispiel #6
0
 public ScraperService(ILogger loger,
                       IGenreRepository genresRepository,
                       IAppDataRepository appDatRepository,
                       ISearchAppRepository searchDataRepository,
                       IUnitOfWork uow
                       )
 {
     _loger                = loger;
     _genresRepository     = genresRepository;
     _appDatRepository     = appDatRepository;
     _searchDataRepository = searchDataRepository;
     _uow   = uow;
     Client = GenereteClient();
 }
 public CommentViewComponent(IAppDataRepository repo,
                             UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
 public VideoHub(IAppDataRepository repo, UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
Beispiel #9
0
 public CourseDetailsNavViewComponent(IAppDataRepository repo)
 {
     repository = repo;
 }
 public CommentsHub(IAppDataRepository repo, UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
Beispiel #11
0
 public SocialAddressViewComponent(IAppDataRepository context)
 {
     _context = context;
 }
 public RepresentationRatingViewComponent(IAppDataRepository repo,
                                          UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
 public VideoSettingsViewComponent(UserManager <AppUser> userMgr,
                                   IAppDataRepository repo)
 {
     userManager = userMgr;
     repository  = repo;
 }
Beispiel #14
0
 public CourseNewRepresentationViewComponent(IAppDataRepository repo,
                                             UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
Beispiel #15
0
 public UserHomeStatisticsViewComponent(IAppDataRepository repo,
                                        UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
 public GroupsAdminViewComponent(IAppDataRepository repo,
                                 UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
Beispiel #17
0
 public ReportingController(UserManager <AppUser> userMgr,
                            IAppDataRepository repo)
 {
     userManager = userMgr;
     repository  = repo;
 }
Beispiel #18
0
 public NotificationController(UserManager <AppUser> userMgr, IAppDataRepository repo)
 {
     userManager = userMgr;
     repository  = repo;
 }
 public GroupsUploadPhotoViewComponent(IAppDataRepository repo)
 {
     repository = repo;
 }
Beispiel #20
0
 public CommentController(IAppDataRepository repo, UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
 public NotificationHub(IAppDataRepository repo, UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }
 public NotificationViewComponent(IAppDataRepository repo,
                                  UserManager <AppUser> userMgr)
 {
     repository  = repo;
     userManager = userMgr;
 }