Beispiel #1
0
 public CitationsController(CommonContext commonContext, RedisCache redisCache, IServiceProvider serviceProvider, IOptions <AppSettings> appSettings, CommonAccountService commonAccountSvc, CitationService citationSvc, FileService fileSvc)
     : base(commonContext, redisCache, serviceProvider, appSettings)
 {
     _commonAccountSvc = commonAccountSvc;
     _citationSvc      = citationSvc;
     _fileSvc          = fileSvc;
 }
 public AccountsController(CommonContext commonContext, RedisCache cache, CommonAccountService commonAccountService, IOptions <AppSettings> appSettings, AccountContext accountCtx, IHostingEnvironment env) :
     base(commonContext, cache, appSettings)
 {
     _accountCtx       = accountCtx;
     _env              = env;
     _commonAccountSvc = commonAccountService;
 }
Beispiel #3
0
 public AccountActionFilterImpl(CommonContext commonContext, AccountContext accountContext, RedisCache cache, UserService userSvc, CommonAccountService commonAccountSvc, IHostingEnvironment env)
 {
     _cache            = cache;
     _userSvc          = userSvc;
     _commonAccountSvc = commonAccountSvc;
     _env = env;
 }
Beispiel #4
0
 public CommonController(CommonContext commonContext, RedisCache cache, IOptions <AppSettings> appSettings, CommonAccountService commonAccountSvc, CommonUserService commonUserSvc, AccountContext accountCtx, MailService mailSvc) :
     base(commonContext, cache, appSettings)
 {
     _accountCtx       = accountCtx;
     _commonAccountSvc = commonAccountSvc;
     _commonUserSvc    = commonUserSvc;
     _mailSvc          = mailSvc;
 }
 public TicketController(CommonContext commonContext, IServiceProvider serviceProvider, RedisCache redisCache, IOptions <AppSettings> appSettings, CommonAccountService commonAccountSvc, FileService fileService, IDataProtectionProvider dataProtector, StripeService stripeSvc, CitationService citationSvc)
     : base(commonContext, serviceProvider, redisCache, appSettings)
 {
     _commonAccountSvc = commonAccountSvc;
     _dataProtector    = dataProtector.CreateProtector(GetType().FullName);
     _fileService      = fileService;
     _stripeSvc        = stripeSvc;
     _citationSvc      = citationSvc;
 }
 public UsersController(CommonContext commonContext, RedisCache cache, IOptions <AppSettings> appSettings, CommonAccountService commonAccountSvc, CommonUserService commonUserSvc,
                        AccountContext accountCtx, PushNotification PushSvc) :
     base(commonContext, cache, appSettings)
 {
     _accountCtx       = accountCtx;
     _commonAccountSvc = commonAccountSvc;
     _commonUserSvc    = commonUserSvc;
     _PushSvc          = PushSvc;
 }
 public UserController(CommonContext commonContext, IServiceProvider serviceProvider, RedisCache redisCache, IOptions <AppSettings> appSettings, CommonUserService commonUserSvc, MailService mailSvc, CommonAccountService commonAccountSvc, AccountContext accountCtx, FileService fileService)
     : base(commonContext, serviceProvider, redisCache, appSettings)
 {
     _commonUserSvc    = commonUserSvc;
     _mailSvc          = mailSvc;
     _commonAccountSvc = commonAccountSvc;
     _accountCtx       = accountCtx;
     _appSettings      = appSettings.Value;
     _fileService      = fileService;
 }
Beispiel #8
0
 public EventsController(CommonContext commonContext, IServiceProvider serviceProvider, RedisCache redisCache, IOptions <AppSettings> appSettings, AccountContext accountCtx, CommonUserService commonUserSvc, MailService mailSvc, ViolationService violationSvc, FileService fileService, CommonAccountService commonAccountSvc, PushNotification pushSvc)
     : base(commonContext, serviceProvider, redisCache, appSettings)
 {
     _accountCtx       = accountCtx;
     _mailSvc          = mailSvc;
     _violationSvc     = violationSvc;
     _appSettings      = appSettings.Value;
     _commonContext    = commonContext;
     _fileService      = fileService;
     _commonAccountSvc = commonAccountSvc;
     _PushSvc          = pushSvc;
 }
Beispiel #9
0
 public UsersController(CommonContext commonContext, RedisCache redisCache, IServiceProvider serviceProvider, IOptions <AppSettings> appSettings, CommonAccountService commonAccountSvc, MailService mailSvc)
     : base(commonContext, redisCache, serviceProvider, appSettings)
 {
     _commonAccountSvc = commonAccountSvc;
     _mailSvc          = mailSvc;
 }
Beispiel #10
0
 public AccountsController(CommonContext commonContext, RedisCache redisCache, IServiceProvider serviceProvider, IOptions <AppSettings> appSettings, CommonAccountService commonAccountSvc, IHostingEnvironment env)
     : base(commonContext, redisCache, serviceProvider, appSettings)
 {
     _commonAccountSvc = commonAccountSvc;
     _env = env;
 }
Beispiel #11
0
 public ViolationsController(CommonContext commonContext, RedisCache redisCache, IServiceProvider serviceProvider, IOptions <AppSettings> appSettings, CommonAccountService commonAccountSvc, ViolationService violationSvc)
     : base(commonContext, redisCache, serviceProvider, appSettings)
 {
     _commonAccountSvc = commonAccountSvc;
     _violationSvc     = violationSvc;
 }