示例#1
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param></param>
        ///

        //viết trước khi có history
        public PointInteractor(
            PointDataGateway iPointDataGateway,
            OutputBoundary iOutput,
            ScreenBoundary iScreen)
        {
            _IPointDataGateway = iPointDataGateway;
            _Ioutput           = iOutput;
            _IScreen           = iScreen;
        }
 public PointInteractorMain(HistoryGateway iHistory, ScreenBoundary iScreen, PointDataGateway iPointData, OutputBoundary iOut)
 {
     interactor = new PointInteractor(
         iHistory,
         iPointData,
         iOut,
         iScreen
         );
 }
示例#3
0
 public ITControl_Interactor(OutputBoundary iOutput,
                             PointDataGateway iPoint,
                             HardDriveGateway hd,
                             ScreenBoundary iScreen)
 {
     _iOuput  = iOutput;
     _iPoint  = iPoint;
     _hd      = hd;
     _iScreen = iScreen;
 }
示例#4
0
 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
         );
 }