Esempio n. 1
0
        public GroundStationPresenter(IVehicleCommunication model, IGroundStationView view)
        {
            this._view      = view;
            _view.Presenter = this;

            this._model          = model;
            _model.NewTelemetry += _model_NewTelemetry;
            _model.NewPhoto     += _model_NewPhoto;
        }
        public GroundStationPresenter(IVehicleCommunication model, IGroundStationView view)
        {
            this._view = view;
            _view.Presenter = this;

            this._model = model;
            _model.NewTelemetry += _model_NewTelemetry;
            _model.NewPhoto += _model_NewPhoto;
        }