Beispiel #1
0
 public BaseController(IAnomalyService anomalyService, IRefTablesService refTablesService)
 {
     _anomalyService   = anomalyService;
     _refTablesService = refTablesService;
 }
Beispiel #2
0
 public RefTableController(IRefTablesService refTablesService, ILocationService locationService)
 {
     _refTablesService = refTablesService;
     _locationService  = locationService;
 }
Beispiel #3
0
 public PMController(IAnomalyService anomalyService, IRefTablesService refTablesService) : base(anomalyService, refTablesService)
 {
     _pmControllerBusiness = new PMControllerBusiness(_anomalyService, _refTablesService);
 }
Beispiel #4
0
 public PMControllerBusiness(IAnomalyService anomalyService, IRefTablesService refTablesService)
 {
     _refTablesService = refTablesService;
     _anomalyService   = anomalyService;
 }