Example #1
0
        public GLandPriceView()
        {
            InitializeComponent();
            _engine = new GLandprice();
            _engine.SetView(this);
            _controller = new GLandpriceController(_engine,this);

            _mapView = this.gMapView1;
            //this._mapView.SetLandpriceView(this);
            _landpriceName = DataNameTemplate.Thua_Gia_Dat_Draft;
            this._inputParams = InputParams.CallMe();
        }
Example #2
0
 public GLandpriceController(ILandprice engine, ILandpriceView view)
 {
     this._view = view;
     this._engine = engine;
 }
Example #3
0
 void ILandpriceController.SetEngine(ILandprice engine)
 {
     this._engine = engine;
 }