public ITControl_Interactor(OutputBoundary iOutput,
                             PointDataGateway iPoint,
                             HardDriveGateway hd,
                             ScreenBoundary iScreen,
                             FileOpenerAPI fileAPI)
 {
     _iOuput  = iOutput;
     _iPoint  = iPoint;
     _hd      = hd;
     _iScreen = iScreen;
     _fileAPI = fileAPI;
 }
 public IT_Control_InteractorMain(HardDriveGateway iHD, ScreenBoundary iScreen, PointDataGateway iPointData, OutputBoundary iOut, FileOpenerAPI fileAPI)
 {
     interactor = new ITControl_Interactor(
         iOut,
         iPointData,
         iHD,
         iScreen,
         fileAPI
         );
 }