Ejemplo n.º 1
0
 public DataSet GetPackingRecDtlRecords(ContextInfo contextInfo, List<MESParameterInfo> lstParameters)
 {
     contextInfo.Action = MES_ActionType.Query;
     PackingRecDtlBll bll = new PackingRecDtlBll(contextInfo);
     bll.CallAccessControl();
     DataSet rs = bll.GetSelectedRecords<tinppackingrecdtl>(lstParameters);
     GC.Collect();
     return rs;
 }