| 12345678910111213141516171819202122232425262728293031 |
- 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<ComMscEntity> query(ComMscEntity mscEntity)
- {
- List<ComMscEntity> mscEntityList = EntityHelper.GetData<ComMscEntity>(
- "com.steering.pss.qcm.DAL.ComMscDAL.query", new object[] { JSONFormat.Format(mscEntity) }, _ob);
- return mscEntityList;
- }
- public List<ComMscEntity> queryByPsc(string psc)
- {
- List<ComMscEntity> mscEntityList = EntityHelper.GetData<ComMscEntity>(
- "com.steering.pss.qcm.DAL.ComMscDAL.queryByPsc", new object[] { psc }, _ob);
- return mscEntityList;
- }
- }
- }
|