public BankAccountChartService(IBankAccountChartRepository BankAccountChartRepository, IAccountChartsRepository accountChartsRepository, IUnitOfWork UnitOfWork, ILanguageService languageService)
 {
     this._BankAccountChartRepository = BankAccountChartRepository;
     this._accountChartsRepository    = accountChartsRepository;
     this._unitOfWork      = UnitOfWork;
     this._languageService = languageService;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of
 /// type BanksService.
 /// </summary>
 /// <param name="BanksRepository"></param>
 /// <param name="unitOfWork"></param>
 public BanksService(
     IBanksRepository BanksRepository,
     IBankAccountChartRepository bankAccountChartRepository,
     IAccountChartDocumentRepository accountChartDocumentRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._BanksRepository                = BanksRepository;
     this._bankAccountChartRepository     = bankAccountChartRepository;
     this._accountChartDocumentRepository = accountChartDocumentRepository;
     this._languageService                = languageService;
     this._unitOfWork = unitOfWork;
 }