public SMSApprovalService(IRepository repository, ISaveService saveService, ISpendService spendService, ICharityService charityService, IChoreService choreService, ISMSApprovalHistory smsApprovalHistory) : base(repository) { _saveService = saveService; _spendService = spendService; _charityService = charityService; _choreService = choreService; _smsApprovalHistory = smsApprovalHistory; }
/// <summary> /// Ctor /// </summary> /// <param name="repository">Repository</param> public SpendService(IRepository repository, IGyftService gyftService, ICurrentUserService currentUserService, IFamilyService familyService, IEarningsService earningsService, ITextMessageService textMessageService, ITransactionService transactionService, IBankService bankService, ISMSApprovalHistory smsApprovalHistory) : base(repository) { _gyftService = gyftService; _currentUserService = currentUserService; _familyService = familyService; _earningsService = earningsService; _textMessageService = textMessageService; _transactionService = transactionService; _bankService = bankService; _smsApprovalHistory = smsApprovalHistory; }
public CharityService(IRepository repository, ICurrentUserService currentUserService, ITransactionService transactionService, IEarningsService earningsService, IBankService bankService, ITextMessageService textMessageService, IAppSettingsService appSettingsService, ISMSApprovalHistory smsApprovalHistory, IFamilyService familyService) : base(repository) { _currentUserService = currentUserService; _transactionService = transactionService; _earningsService = earningsService; _bankService = bankService; _textMessageService = textMessageService; _appSettingsService = appSettingsService; _smsApprovalHistory = smsApprovalHistory; _familyService = familyService; }
public NotificationService(IRepository _repository, ITextMessageService textMessageService, IEmailTemplateService emailTemplateService, IEmailService emailService, IEmailHistoryService emailHistoryService, ISMSApprovalHistory smsApprovalHistory, IFamilyService familyService, IChoreService choreService, IEarningsService earningServices) : base(_repository) { _textMessageService = textMessageService; _emailTemplateService = emailTemplateService; _emailService = emailService; _emailHistoryService = emailHistoryService; _smsApprovalHistory = smsApprovalHistory; _familyService = familyService; _choreService = choreService; _earningServices = earningServices; }
/// <summary> /// Ctor /// </summary> /// <param name="repository"></param> /// <param name="stockPileService"></param> /// <param name="currentUserService"></param> /// <param name="familyService"></param> /// <param name="textMessageService"></param> /// <param name="transactionService"></param> /// <param name="earningsService"></param> public SaveService(IRepository repository, IStockPileService stockPileService, ICurrentUserService currentUserService, IFamilyService familyService, ITextMessageService textMessageService, IEarningsService earningsService, ISMSApprovalHistory smsApprovalHistory, ITransactionService transactionService, IBankService bankService) : base(repository) { _stockPileService = stockPileService; _currentUserService = currentUserService; _familyService = familyService; _textMessageService = textMessageService; _earningsService = earningsService; _smsApprovalHistory = smsApprovalHistory; _transactionService = transactionService; _bankService = bankService; }
public RemindSMSApprovalJob(ISMSApprovalHistory smsApprovalHistory) { _smsApprovalHistory = smsApprovalHistory; }
public RemindChorePaymentJob(ISMSApprovalHistory smsApprovalHistory) { _smsApprovalHistory = smsApprovalHistory; }