Пример #1
0
 public BankService(IRepository repository, ICurrentUserService currentUserService, IPlaidService plaidService, ICoreProService coreproService, ISignUpProgressService signUpProgressService) : base(repository)
 {
     _currentUserService    = currentUserService;
     _plaidService          = plaidService;
     _coreproService        = coreproService;
     _signUpProgressService = signUpProgressService;
 }
Пример #2
0
 public ChoreService(IRepository repository, ISignUpProgressService signUpProgressService, ICurrentUserService currentUserService, ITransactionService transactionService, IEarningsService earningServices) : base(repository)
 {
     _signUpProgressService = signUpProgressService;
     _currentUserService    = currentUserService;
     _transactionService    = transactionService;
     _earningServices       = earningServices;
 }
 public AccountController(ICoreProMessageService coreProMessageService, IAccountService accountService, ISignUpProgressService signUpProgressService, ICurrentUserService currentUserService, ISmsBotService smsBotService)
 {
     _accountService        = accountService;
     _signUpProgressService = signUpProgressService;
     _currentUserService    = currentUserService;
     _smsBotService         = smsBotService;
     _coreProMessageService = coreProMessageService;
 }
Пример #4
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="repository">Repository</param>
 public BankAuthorizeService(IRepository repository, ICurrentUserService currentUserService, ISignUpProgressService signUpProgressService,
                             IAppSettingsService appSettingsService, ICoreProService coreproService, IFamilyService familyService, IBankService bankService,
                             IPlaidService plaidService, IEmailService emailService, IEmailTemplateService emailTemplateService, IEmailHistoryService emailHistoryService) : base(repository)
 {
     _currentUserService    = currentUserService;
     _signUpProgressService = signUpProgressService;
     _appSettingsService    = appSettingsService;
     _coreproService        = coreproService;
     _familyService         = familyService;
     _bankService           = bankService;
     _plaidService          = plaidService;
     _emailService          = emailService;
     _emailTemplateService  = emailTemplateService;
     _emailHistoryService   = emailHistoryService;
 }
Пример #5
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="repository">Repository</param>
 /// <param name="cryptoService">Crypto service</param>
 /// <param name="storageService">Storage service</param>
 /// <param name="allocationSettingsService">Allocation settings service</param>
 /// <param name="currentUserService">Current user service</param>
 /// <param name="SignUp progress service">Sign up progress service</param>
 public FamilyService(IRepository repository, ICryptoService cryptoService, IStorageService storageService, IAllocationSettingsService allocationSettingsService,
                      ICurrentUserService currentUserService, IEarningsService earningsService, IAppSettingsService appSettingsService, ITextMessageService textMessageService,
                      IEmailTemplateService emailTemplateService, IEmailService emailService, IEmailHistoryService emailHistoryService,
                      ISignUpProgressService signUpProgressService, ITransactionService transactionService, IBankService bankService, ICoreProService CoreProService) : base(repository)
 {
     _cryptoService             = cryptoService;
     _storageService            = storageService;
     _allocationSettingsService = allocationSettingsService;
     _currentUserService        = currentUserService;
     _earningsService           = earningsService;
     _appSettingsService        = appSettingsService;
     _textMessageService        = textMessageService;
     _emailTemplateService      = emailTemplateService;
     _emailService          = emailService;
     _emailHistoryService   = emailHistoryService;
     _signUpProgressService = signUpProgressService;
     _transactionService    = transactionService;
     _bankService           = bankService;
     _coreproservice        = CoreProService;
 }