Exemplo n.º 1
0
 public ComponentTypeService(IComponentTypeRepository componentTypeRepository,
                             IAssetCategoryService assetCategoryService,
                             IAssetTypeService assetTypeService,
                             IEmployeeService employeeService)
 {
     _componentTypeRepository = componentTypeRepository;
     _assetCategoryService    = assetCategoryService;
     _assetTypeService        = assetTypeService;
     _employeeService         = employeeService;
 }
Exemplo n.º 2
0
 public ExcelService(IAreaService areaService, IAssetAttributeService attributeService,
                     IAssetAttributeValueService attributeValueService, ILocationService locationService,
                     IAssetTypeService assetTypeService, IAssetService assetService, ICampusService campusService)
 {
     this._areaService           = areaService;
     this._attributeService      = attributeService;
     this._attributeValueService = attributeValueService;
     this._locationService       = locationService;
     this._assetTypeService      = assetTypeService;
     this._assetService          = assetService;
     this._campusService         = campusService;
 }
Exemplo n.º 3
0
 public AssetController(IAssetService assetService, IAssetTypeService assetTypeService, IAreaService areaService, ILocationService locationService,
                        IAssetAttributeService assetAttributeService, IAssetAttributeValueService assetAttributeValueService, IReportService reportService, IAssetLogService assetLogService, ApplicationUserManager applicationUserManager)
 {
     this._assetAttributeService      = assetAttributeService;
     this._assetTypeService           = assetTypeService;
     this._areaService                = areaService;
     this._assetService               = assetService;
     this._assetAttributeValueService = assetAttributeValueService;
     this._reportService              = reportService;
     this._assetLogService            = assetLogService;
     this.applicationUserManager      = applicationUserManager;
     this._locationService            = locationService;
 }
Exemplo n.º 4
0
 public ExcelController(IAreaService areaService, IAssetAttributeService attributeService,
                        IAssetAttributeValueService attributeValueService, ILocationService locationService,
                        IAssetTypeService assetTypeService, IAssetService assetService, ICampusService campusService,
                        IAssetAttributeService assetAttributeService, ApplicationUserManager _userManager)
 {
     this.areaService           = areaService;
     this.attributeService      = attributeService;
     this.attributeValueService = attributeValueService;
     this.locationService       = locationService;
     this.assetTypeService      = assetTypeService;
     this.assetService          = assetService;
     this.campusService         = campusService;
     this.assetAttributeService = assetAttributeService;
     this._userManager          = _userManager;
 }
Exemplo n.º 5
0
 public AssetTypeController(IAssetTypeService assetTypeService) : base(assetTypeService)
 {
     _assetTypeService = assetTypeService;
 }
Exemplo n.º 6
0
 public ComponentTypeController(IComponentTypeService ComponentTypeService, ILog logger, IAssetTypeService assetTypeService)
 {
     _ComponentTypeService = ComponentTypeService;
     _logger           = logger;
     _assetTypeService = assetTypeService;
 }
Exemplo n.º 7
0
 public AssetTypeController(IAssetTypeService assetTypeService, ILog logger)
 {
     _assetTypeService = assetTypeService;
     _logger           = logger;
 }
Exemplo n.º 8
0
 public AssetTypesController(IAssetTypeService _assetTypeService) : base(_assetTypeService)
 {
 }
Exemplo n.º 9
0
 public AssetTypeController(IAssetTypeService assetTypeService, IAssetAttributeService assetAttributeService)
 {
     this.AssetTypeService      = assetTypeService;
     this.AssetAttributeService = assetAttributeService;
 }
Exemplo n.º 10
0
 public AssetTypesResolver(IMapper mapper, IAssetTypeService service)
 {
     _mapper  = mapper;
     _service = service;
 }
Exemplo n.º 11
0
 public AssetTypeController(ILogger <AssetTypeController> logger, IMapper mapper, IAssetTypeService baseService)
     : base(logger, mapper, baseService)
 {
 }
Exemplo n.º 12
0
 public AssetTypeProxy(IAssetTypeService assetTypeService, IEasyCachingProviderFactory factory)
 {
     _assetTypeService = assetTypeService ?? throw new ArgumentNullException(nameof(assetTypeService));
     _factory          = factory ?? throw new ArgumentNullException(nameof(factory));
     _provider         = factory.GetCachingProvider(nameof(EntityG));
 }
 public AssetTypeController(IAssetTypeService assetTypeService, IAssetTypeProxy assetTypeProxy)
 {
     _assetTypeService = assetTypeService ?? throw new ArgumentNullException(nameof(assetTypeService));
     _assetTypeProxy   = assetTypeProxy ?? throw new ArgumentNullException(nameof(assetTypeProxy));
 }
Exemplo n.º 14
0
 public PICController(IPICService PICService, ILocationService locationService, IAreaService areaService, IAssetTypeService assetTypeService, ApplicationUserManager applicationUserManager)
 {
     this._PICService            = PICService;
     this._locationService       = locationService;
     this._areaService           = areaService;
     this._assetTypeService      = assetTypeService;
     this.applicationUserManager = applicationUserManager;
 }