ReSetReportNumBLL.cs 508 B

12345678910111213141516171819
  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 ReSetReportNumBLL
  10. {
  11. ReSetReportNumService service = new ReSetReportNumService();
  12. public string SendCommand(string id, string addr, string IOT_Code, string retryNum)
  13. {
  14. return service.SendCommand(id,addr,IOT_Code,retryNum);
  15. }
  16. }
  17. }