Example #1
0
 protected override int GetRowCount()
 {
     if (_facade == null)
     {
         _facade = new BenQGuru.eMES.WebQuery.OutSourcingQueryFacade(base.DataProvider);
     }
     return(this._facade.QueryOutMOCount(
                this.txtConditionMo.Text, this.rdbType.SelectedValue));
 }
Example #2
0
 protected override int GetRowCount()
 {
     if (_facade == null)
     {
         _facade = new BenQGuru.eMES.WebQuery.OutSourcingQueryFacade(base.DataProvider);
     }
     return(this._facade.QueryOutSourcingWIPMaterialCount(
                this.rdbType.SelectedValue, this.txtConditionItem.Text,
                this.txtConditionMo.Text, this.txtStartSnQuery.Text, this.txtEndSnQuery.Text));
 }
Example #3
0
 protected override object[] LoadDataSource(int inclusive, int exclusive)
 {
     if (_facade == null)
     {
         _facade = new BenQGuru.eMES.WebQuery.OutSourcingQueryFacade(base.DataProvider);
     }
     return(this._facade.QueryOutMO(
                this.txtConditionMo.Text, this.rdbType.SelectedValue,
                inclusive, exclusive));
 }