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