Пример #1
0
 public Handler
     (IBudgetCategoryRepository budgetCategoryRepository,
     ITransactionScheduleRepository transactionRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider) : base(budgetCategoryRepository, transactionRepository, mapper, authenticationProvider)
 {
 }
Пример #2
0
 public BaseTransactionScheduleHandler
     (IBudgetCategoryRepository budgetCategoryRepository,
     ITransactionScheduleRepository transactionScheduleRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider)
 {
     BudgetCategoryRepository      = budgetCategoryRepository;
     TransactionScheduleRepository = transactionScheduleRepository;
     Mapper = mapper;
     AuthenticationProvider = authenticationProvider;
 }
 public Handler
     (ITransactionScheduleRepository transactionRepository,
     IMapper mapper,
     IAuthenticationProvider authenticationProvider) : base(null, transactionRepository, mapper, authenticationProvider)
 {
 }