public SafeAccountChartsService(ISafeAccountChartsRepository safeAccountChartsRepository, IAccountChartsRepository accountChartsRepository, IUnitOfWork UnitOfWork, ILanguageService languageService)
 {
     this._safeAccountChartsRepository = safeAccountChartsRepository;
     this._accountChartsRepository     = accountChartsRepository;
     this._unitOfWork      = UnitOfWork;
     this._languageService = languageService;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of
 /// type SafesService.
 /// </summary>
 /// <param name="SafesRepository"></param>
 /// <param name="unitOfWork"></param>
 public SafesService(
     ISafesRepository SafesRepository,
     IAccountChartsRepository accountChartsRepository,
     ISafeAccountChartsRepository safeAccountChartsRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._SafesRepository             = SafesRepository;
     this._accountChartsRepository     = accountChartsRepository;
     this._safeAccountChartsRepository = safeAccountChartsRepository;
     this._languageService             = languageService;
     this._unitOfWork = unitOfWork;
 }