NBValveControlBLL.cs 760 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using LeaRun.Application.Service.NBManage;
  7. namespace LeaRun.Application.Busines.NBManage
  8. {
  9. public class NBValveControlBLL
  10. {
  11. NBValveControlService service = new NBValveControlService();
  12. public string SendCommand(string id, string commandValue, string addr, string IOT_Code,string cmdText)
  13. {
  14. return service.SendCommand(id,commandValue,addr,IOT_Code, cmdText);
  15. }
  16. public string SendCommandSY(string id, string commandValue, string addr, string IOT_Code, string cmdText)
  17. {
  18. return service.SendCommandSY(id, commandValue, addr, IOT_Code, cmdText);
  19. }
  20. }
  21. }