using Core.Mes.Client.Comm.Format; using Core.Mes.Client.Comm.Tool; using Core.StlMes.Client.Qcm.model; using CoreFS.CA06; using System.Collections.Generic; namespace Core.StlMes.Client.Qcm.BLL { public class ComMscBLL { private OpeBase _ob; public ComMscBLL(OpeBase ob) { _ob = ob; } public List query(ComMscEntity mscEntity) { List mscEntityList = EntityHelper.GetData( "com.steering.pss.qcm.DAL.ComMscDAL.query", new object[] { JSONFormat.Format(mscEntity) }, _ob); return mscEntityList; } public List queryByPsc(string psc) { List mscEntityList = EntityHelper.GetData( "com.steering.pss.qcm.DAL.ComMscDAL.queryByPsc", new object[] { psc }, _ob); return mscEntityList; } } }