Example #1
0
        public Loader(IReceiverView view)
        {
            if (view != null)
            {
                _lstView.Add(view);
            }

            _dicTableName = new Dictionary<EnumG1ArcGisTnRecType, string>();
        }
Example #2
0
 public ReceiverPresenter(IReceiverView view)
 {
     this.view      = view;
     view.TryClose += view_TryClose;
     StartReceive();
 }
Example #3
0
 void ILoader.AddReceiver(IReceiverView view)
 {
     if (view != null)
     {
         _lstView.Add(view);
     }
 }
Example #4
0
 public LoaderController(IReceiverView view, ILoader loader)
 {
     this._view = view;
     this._loader = loader;
 }