using System; using System.Collections.Generic; using System.Linq; using System.Text; using CoreFS.CA06; using System.Data; using System.Collections; using Core.Mes.Client.Common; using Core.LgMes.Client.lgDbMgt; namespace Core.LgMes.Client.lgServiceMgt.LgResService { /// /// stl_ccm_billetwgtsampling /// public class LgStlCcmBilletWgtSamplingService : Core.LgMes.Client.lgServiceMgt.BaseService.LgBaseService { public DataSet GetStlCcmBilletWgtSampling(ClientParamWithSqlConditionAndOpenBase param) { DataSet ds = new DataSet(); string sqlStr = ""; try { sqlStr = LgSqlCollection.LgRes.LgCcmResSql.LgCcmResSql01.GetSqlForStl_ccm_billetwgtsampling(param.sqlCondition); ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr,param.ob)); } catch { } return ds; } } }