public Handler
     (IBudgetCategoryRepository budgetCategoryRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider, IMediator mediator) : base(budgetCategoryRepository, mapper, authenticationProvider)
 {
     _mediator = mediator;
 }
Пример #2
0
 public Handler
     (IBudgetCategoryRepository budgetCategoryRepository,
     ITransactionScheduleRepository transactionRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider) : base(budgetCategoryRepository, transactionRepository, mapper, authenticationProvider)
 {
 }
Пример #3
0
 public Handler
     (IBudgetCategoryRepository budgetCategoryRepository,
     IAllocationRepository allocationRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider) : base(budgetCategoryRepository, allocationRepository, mapper, authenticationProvider)
 {
 }
Пример #4
0
 public Handler
     (IBudgetCategoryRepository budgetCategoryRepository,
     IBudgetRepository budgetRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider) : base(budgetCategoryRepository, mapper, authenticationProvider)
 {
     _budgetRepository = budgetRepository;
 }
 protected BaseBudgetCategoryHandler
     (IBudgetCategoryRepository budgetCategoryRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider)
 {
     BudgetCategoryRepository = budgetCategoryRepository;
     Mapper = mapper;
     AuthenticationProvider = authenticationProvider;
 }
Пример #6
0
 public BaseAllocationHandler
     (IBudgetCategoryRepository budgetCategoryRepository,
     IAllocationRepository allocationRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider)
 {
     BudgetCategoryRepository = budgetCategoryRepository;
     AllocationRepository     = allocationRepository;
     Mapper = mapper;
     AuthenticationProvider = authenticationProvider;
 }
Пример #7
0
 public BaseTransactionScheduleHandler
     (IBudgetCategoryRepository budgetCategoryRepository,
     ITransactionScheduleRepository transactionScheduleRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider)
 {
     BudgetCategoryRepository      = budgetCategoryRepository;
     TransactionScheduleRepository = transactionScheduleRepository;
     Mapper = mapper;
     AuthenticationProvider = authenticationProvider;
 }
Пример #8
0
 protected BaseTransactionHandler
     (IBudgetCategoryRepository budgetCategoryRepository,
     ITransactionRepository transactionRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider)
 {
     BudgetCategoryRepository = budgetCategoryRepository;
     TransactionRepository    = transactionRepository;
     Mapper = mapper;
     AuthenticationProvider = authenticationProvider;
 }
Пример #9
0
 public AccountService(IUnitOfWork unitOfWork, IAccountRepository accountRepository, ITransactionRepository transactionRepository, ICategoryRepository categoryRepository, IVendorRepository vendorRepository, IBillRepository billRepository, IBillTransactionRepository billTransactionRepository, IBillGroupRepository billGroupRepository, ICategoryGroupRepository categoryGroupRepository, IBudgetCategoryRepository budgetCategoryRepository, IImportDescriptionVendorMapRepository importDescriptionVendorMapRepository)
 {
     _unitOfWork = unitOfWork;
     _accountRepository = accountRepository;
     _transactionRepository = transactionRepository;
     _categoryRepository = categoryRepository;
     _vendorRepository = vendorRepository;
     _billRepository = billRepository;
     _billTransactionRepository = billTransactionRepository;
     _billGroupRepository = billGroupRepository;
     _categoryGroupRepository = categoryGroupRepository;
     _budgetCategoryRepository = budgetCategoryRepository;
     _importDescriptionVendorMapRepository = importDescriptionVendorMapRepository;
 }
Пример #10
0
 public ExpenseController(IExpenseRepository expenseRepository, IBudgetCategoryRepository budgetCategoryRepository)
 {
     _expenseRepository        = expenseRepository;
     _budgetCategoryRepository = budgetCategoryRepository;
 }
Пример #11
0
 public BudgetCategoryController(IBudgetCategoryRepository budgetCategoryRepository)
 {
     _budgetCategoryRepository = budgetCategoryRepository;
 }
 public BudgetCategoriesController(IBudgetCategoriesControllerHelper controllerHelper,
                                   IBudgetCategoryRepository repo)
 {
     _controllerHelper = controllerHelper;
     _repo             = repo;
 }