Exemplo n.º 1
0
 public AssetService(IAssetCategoryService assetCategoryService
                     , IAssetTypeService assetTypeService
                     , IAssetRepository assetRepository
                     , IHardwareAssetService hardwareAssetService
                     , ISoftwareAssetService softwareAssetService
                     , IAssetTrackerService assetTrackerService
                     , IEmployeeService employeeService
                     , IComponentTypeService componentTypeService
                     , IComponentsService componentsService
                     , IComponentAssetMappingService componentAssetMappingService
                     , IEmployeeAssetMappingRepository employeeAssetMappingRepository
                     , IComponentTrackerService componentTrackerService)
 {
     _assetCategoryService           = assetCategoryService;
     _assetTypeService               = assetTypeService;
     _assetRepository                = assetRepository;
     _hardwareAssetService           = hardwareAssetService;
     _softwareAssetService           = softwareAssetService;
     _assetTrackerService            = assetTrackerService;
     _employeeService                = employeeService;
     _componentTypeService           = componentTypeService;
     _componentsService              = componentsService;
     _componentAssetMappingService   = componentAssetMappingService;
     _employeeAssetMappingRepository = employeeAssetMappingRepository;
     _componentTrackerService        = componentTrackerService;
 }