Esempio n. 1
0
 public ReportController(IReportService reportService, IAssetService assetService, IMailConfigService mailConfigService, IMaintenanceDiaryService maintenanceDiaryService, IAssetLogService assetLogService, ApplicationUserManager applicationUserManager)
 {
     this._reportService           = reportService;
     this._assetService            = assetService;
     this._mailConfigService       = mailConfigService;
     this._maintenanceDiaryService = maintenanceDiaryService;
     this._assetLogService         = assetLogService;
     this.applicationUserManager   = applicationUserManager;
 }
Esempio n. 2
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;
 }
Esempio n. 3
0
 public AssetLogController(IAssetLogService assetLogService)
 {
     this._assetLogService = assetLogService;
 }