ComPscBLL.cs 566 B

12345678910111213141516171819202122
  1. using Core.Mes.Client.Comm.Format;
  2. using Core.Mes.Client.Comm.Tool;
  3. using CoreFS.CA06;
  4. using System.Collections.Generic;
  5. namespace Core.StlMes.Client.Qcm.BLL
  6. {
  7. public class ComPscBLL
  8. {
  9. private OpeBase ob;
  10. public ComPscBLL(OpeBase ob)
  11. {
  12. this.ob = ob;
  13. }
  14. public List<PscEntity> QueryPscDesc(PscEntity comPsc)
  15. {
  16. return EntityHelper.GetData<PscEntity>("com.steering.pss.qcm.DAL.ComPscDAL.queryPscDesc",
  17. new object[] { JSONFormat.Format(comPsc) }, ob);
  18. }
  19. }
  20. }