예제 #1
0
파일: QueryThua.cs 프로젝트: truonghinh/TnX
 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();
 }
예제 #2
0
 public QueryThuaController(IQueryThua qrt, IQueryThuaView view)
 {
     this._query = qrt;
     this._view = view;
 }