Beispiel #1
0
 public ObjectCostCentersService(
     IObjectCostCentersRepository objectCostCentersRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork
     )
 {
     this._objectCostCentersRepository = objectCostCentersRepository;
     this._languageService             = languageService;
     this._unitOfWork = unitOfWork;
 }
Beispiel #2
0
        /// <summary>
        /// Initializes a new instance of
        /// type AssetsService.
        /// </summary>
        /// <param name="AssetsRepository"></param>
        /// <param name="unitOfWork"></param>
        public AssetsService(
            IObjectCostCentersRepository objectCostCentersRepository,
            IBrandsRepository brandsRepository,
            IAssetsRepository AssetsRepository,
            ILocationsRepository locationsRepository,
            IAssetLocationsRepository assetLocationsRepository,
            ILanguageService languageService,
            IEffiencyRaiseHistoryService EffiencyRaiseHistoryService,

            IUnitOfWork unitOfWork)
        {
            this._objectCostCentersRepository = objectCostCentersRepository;
            this._brandsRepository            = brandsRepository;
            this._AssetsRepository            = AssetsRepository;
            this._locationsRepository         = locationsRepository;
            this._assetLocationsRepository    = assetLocationsRepository;
            this._languageService             = languageService;
            this._EffiencyRaiseHistoryService = EffiencyRaiseHistoryService;

            this._unitOfWork = unitOfWork;
        }