Beispiel #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;
 }
 public CachedAssetCategoryService(
     IAssetCategoryService assetCategoryService,
     IDistributedCache <IAssetCategory, AssetCategory> cache)
 {
     _assetCategoryService = assetCategoryService;
     _cache = cache;
 }
 public ComponentTypeService(IComponentTypeRepository componentTypeRepository,
                             IAssetCategoryService assetCategoryService,
                             IAssetTypeService assetTypeService,
                             IEmployeeService employeeService)
 {
     _componentTypeRepository = componentTypeRepository;
     _assetCategoryService    = assetCategoryService;
     _assetTypeService        = assetTypeService;
     _employeeService         = employeeService;
 }
Beispiel #4
0
 public AssetsController(IAssetService assetService,
                         IAssetCategoryService assetCategoryService)
 {
     _assetService         = assetService;
     _assetCategoryService = assetCategoryService;
 }
 public AssetCategoryController(INotificationHandler <DomainNotification> notifications,
                                IUser user,
                                IAssetCategoryService assetCategoryService) : base(notifications, user)
 {
     _assetCategoryService = assetCategoryService;
 }
 public AssetCategoryController(IAssetCategoryService assetCategoryService, ILog logger)
 {
     _assetCategoryService = assetCategoryService;
     _logger = logger;
 }
 public CategoriesController(ICategoryService categoryService,
                             IAssetCategoryService assetCategoryService)
 {
     _categoryService      = categoryService;
     _assetCategoryService = assetCategoryService;
 }
 public AssetTypeService(IAssetTypeRepository assetAssetTypeRepository,
                         IAssetCategoryService assetCategoryService)
 {
     _assetAssetTypeRepository = assetAssetTypeRepository;
     _assetCategoryService     = assetCategoryService;
 }
Beispiel #9
0
 public AssetCategoryController(IAssetCategoryService iAssetCategoryService, ICommonService iCommonService, IStringLocalizer <RocketPOSResources> sharedLocalizer, LocService locService)
 {
     _iAssetCategoryService = iAssetCategoryService; _iCommonService = iCommonService;
     _sharedLocalizer       = sharedLocalizer;
     _locService            = locService;
 }