public SubscribesController(
     UserManager <ApplicationUser> userManager,
     ISubscribesService subscribesService)
 {
     this.UserManager       = userManager;
     this.SubscribesService = subscribesService;
 }
Пример #2
0
 public CauseController(
     ICausesService service,
     ISubscribesService subscribeService
     )
 {
     _causeService     = service;
     _subscribeService = subscribeService;
 }
Пример #3
0
 public HomeController(
     ICompaniesService companiesService,
     ICommentsService commentsService,
     IRatingsService ratingsService,
     ISubscribesService subscribesService)
 {
     this.companiesService  = companiesService;
     this.commentsService   = commentsService;
     this.ratingsService    = ratingsService;
     this.subscribesService = subscribesService;
 }
Пример #4
0
 public HomeController(
     ICompaniesService companiesService,
     ICommentsService commentsService,
     IRatingsService ratingsService,
     ISubscribesService subscribesService,
     ILogger <HomeController> logger)
 {
     this.companiesService  = companiesService;
     this.commentsService   = commentsService;
     this.ratingsService    = ratingsService;
     this.subscribesService = subscribesService;
     this.logger            = logger;
 }
        public XXSubscribesController(IOptions <SubscribesSettings> subscribesSettings,
                                      ISubscribesService subscribesService, IPlansService plansService,
                                      IPaysService paysService, IBillsService billsService,
                                      IAppLogger logger, IMapper mapper)
        {
            _subscribesSettings = subscribesSettings.Value;

            _subscribesService = subscribesService;
            _plansService      = plansService;
            _paysService       = paysService;
            _billsService      = billsService;
            _logger            = logger;
            _mapper            = mapper;
        }
Пример #6
0
 public DashboardController(
     ISettingsService settingsService,
     ICompaniesService companiesService,
     ICategoriesService categoriesService,
     ICommentsService commentsService,
     ISubscribesService subscribesService,
     IDeletableEntityRepository <ApplicationUser> usersRepository)
 {
     this.settingsService   = settingsService;
     this.categoriesService = categoriesService;
     this.commentsService   = commentsService;
     this.subscribesService = subscribesService;
     this.companiesService  = companiesService;
     this.usersRepository   = usersRepository;
 }
Пример #7
0
        public TestsService(IAppLogger logger, IOptions <AppSettings> appSettings,
                            IPaysService paysService, IBillsService billsService,
                            ISubscribesService subscribesService, IUsersService usersService, IAuthService authService)
        {
            _logger      = logger;
            _appSettings = appSettings.Value;


            _paysService       = paysService;
            _billsService      = billsService;
            _subscribesService = subscribesService;

            _usersService = usersService;
            _authService  = authService;
        }
Пример #8
0
 public SubscribesController(ISubscribesService subscribesService)
 {
     this.subscribesService = subscribesService;
 }
Пример #9
0
 public Subscribes(ISubscribesService subscribesService,
                   IAuthService authService)
 {
     _subscribesService = subscribesService;
     _authService       = authService;
 }
 public SubscribesController(ISubscribesService SubscribesService)
 {
     this.SubscribesService = SubscribesService;
 }