Beispiel #1
0
 public QueryThua(IQueryThuaView view)
 {
     _views = new List<IQueryThuaView>();
     _views.Add(view);
     _sqlTable = SQLTable.CallMe;
     this._bwk = new BackgroundWorker();
     this._bwk.DoWork += new DoWorkEventHandler(_bwk_DoWork);
     this._config = CurrentConfig.CallMe();
 }
Beispiel #2
0
 public QueryThuaController(IQueryThua qrt, IQueryThuaView view)
 {
     this._query = qrt;
     this._view = view;
 }