// Constructor, where env and hubContext are specified
 public DesignAutomationController(IWebHostEnvironment env,
                                   IHubContext <DesignAutomationHub> hubContext,
                                   DesignAutomationClient api,
                                   GoodPracticesService gpService
                                   )
 {
     _designAutomation = api;
     _env        = env;
     _hubContext = hubContext;
     _gpService  = gpService;
 }
 public GoodPracticesController(GoodPracticesService gpService)
 {
     _gpService = gpService;
 }