Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of
 /// type BankMovementsService.
 /// </summary>
 /// <param name="BankMovementsRepository"></param>
 /// <param name="currentUserService"></param>
 /// <param name="languageService"></param>
 /// <param name="unitOfWork"></param>
 public BankMovementsService(
     ITransactionsRepository transactionsRepository,
     IJournalsRepository journalsRepository,
     IJournalPostingsService journalPostingsService,
     IBankMovementsRepository BankMovementsRepository,
     IClosedMonthsService closedMonthsService,
     ICurrentUserService currentUserService,
     IClosedChequeRepository closedChequeRepository,
     IDonationsService donationsService,
     IDonationsRepository donationsRepository,
     IAccountChartsRepository accountChartsRepository,
     IJournalsService journalsService,
     ILanguageService languageService,
     IBankMovementCostCentersRepository bankMovementCostCentersRepository,
     IUnitOfWork unitOfWork)
 {
     this._transactionsRepository  = transactionsRepository;
     this._journalsRepository      = journalsRepository;
     this._journalPostingsService  = journalPostingsService;
     this._BankMovementsRepository = BankMovementsRepository;
     this._closedMonthsService     = closedMonthsService;
     this._currentUserService      = currentUserService;
     this._closedChequeRepository  = closedChequeRepository;
     this._donationsService        = donationsService;
     this._donationsRepository     = donationsRepository;
     this._accountChartsRepository = accountChartsRepository;
     this._journalsService         = journalsService;
     this._languageService         = languageService;
     this._unitOfWork = unitOfWork;
     this._bankMovementCostCentersRepository = bankMovementCostCentersRepository;
 }
 /// <summary>
 /// Initializes a new instance of
 /// type BankMovementCostCentersService.
 /// </summary>
 /// <param name="BankMovementCostCentersRepository"></param>
 /// <param name="unitOfWork"></param>
 public BankMovementCostCentersService(
     IBankMovementCostCentersRepository BankMovementCostCentersRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._BankMovementCostCentersRepository = BankMovementCostCentersRepository;
     this._languageService = languageService;
     this._unitOfWork      = unitOfWork;
 }