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; }
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; }
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; }