예제 #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;
 }
예제 #2
0
 public MaintenanceDiaryController(IMaintenanceDiaryService maintenanceDiaryService, IAssetService assetService)
 {
     this._maintenanceDiaryService = maintenanceDiaryService;
     this._assetService            = assetService;
 }