예제 #1
0
 public TransactionImporter(IUnitOfWork unitOfWork, IAccountService accountService, IAccountRepository accountRepository, ITransactionRepository transactionRepository, IVendorRepository vendorRepository, ICategoryGroupRepository categoryGroupRepository, IAccountGroupRepository accountGroupRepository, IImportDescriptionVendorMapRepository importDescriptionVendorMapRepository)
 {
     _unitOfWork = unitOfWork;
     _accountService = accountService;
     _accountRepository = accountRepository;
     _transactionRepository = transactionRepository;
     _vendorRepository = vendorRepository;
     _categoryGroupRepository = categoryGroupRepository;
     _accountGroupRepository = accountGroupRepository;
     _importDescriptionVendorMapRepository = importDescriptionVendorMapRepository;
 }
예제 #2
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;
 }