using Core.Mes.Client.Comm.Format; using Core.Mes.Client.Comm.Tool; using CoreFS.CA06; using System.Collections.Generic; namespace Core.StlMes.Client.Qcm.BLL { public class ComPscBLL { private OpeBase ob; public ComPscBLL(OpeBase ob) { this.ob = ob; } public List QueryPscDesc(PscEntity comPsc) { return EntityHelper.GetData("com.steering.pss.qcm.DAL.ComPscDAL.queryPscDesc", new object[] { JSONFormat.Format(comPsc) }, ob); } } }