/// <summary>
 /// Initializes a new instance of
 /// type PurchaseInvoicesService.
 /// </summary>
 /// <param name="PurchaseInvoicesRepository"></param>
 /// <param name="unitOfWork"></param>
 public PurchaseInvoicesService(
     ITransactionsRepository transactionsRepository,
     IJournalsRepository journalsRepository,
     IJournalPostingsService journalPostingsService,
     IPurchaseInvoiceCostCentersRepository purchaseInvoiceCostCentersRepository,
     IPurchaseInvoicesRepository PurchaseInvoicesRepository,
     IBrandsRepository BrandsRepository,
     ILanguageService languageService,
     ICurrentUserService currentUserService,
     IClosedMonthsService closedMonthsService,
     IAccountChartsRepository accountChartsRepository,
     IJournalsService journalsService,
     IUnitOfWork unitOfWork)
 {
     this._transactionsRepository = transactionsRepository;
     this._journalsRepository     = journalsRepository;
     this._journalPostingsService = journalPostingsService;
     this._purchaseInvoiceCostCentersRepository = purchaseInvoiceCostCentersRepository;
     this._PurchaseInvoicesRepository           = PurchaseInvoicesRepository;
     this._BrandsRepository        = BrandsRepository;
     this._languageService         = languageService;
     this._currentUserService      = currentUserService;
     this._closedMonthsService     = closedMonthsService;
     this._accountChartsRepository = accountChartsRepository;
     this._journalsService         = journalsService;
     this._unitOfWork = unitOfWork;
 }
 /// <summary>
 /// Initializes a new instance of
 /// type PurchaseInvoiceCostCentersService.
 /// </summary>
 /// <param name="PurchaseInvoiceCostCentersRepository"></param>
 /// <param name="unitOfWork"></param>
 public PurchaseInvoiceCostCentersService(
     IPurchaseInvoiceCostCentersRepository PurchaseInvoiceCostCentersRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._PurchaseInvoiceCostCentersRepository = PurchaseInvoiceCostCentersRepository;
     this._languageService = languageService;
     this._unitOfWork      = unitOfWork;
 }