public AccountChartDocumentService(
     IAccountChartDocumentRepository accountDocumentRepository,
     IAccountChartsRepository accountChartsRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork
     )
 {
     this._accountDocumentRepository = accountDocumentRepository;
     this._accountChartsRepository   = accountChartsRepository;
     this._languageService           = languageService;
     this._unitOfWork = unitOfWork;
 }
예제 #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;
 }