BdLyCityDelete.cs 568 B

12345678910111213141516171819202122232425
  1. using PL.Base;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Data;
  7. using FMS.BLL;
  8. using FMS.ServiceList;
  9. namespace FMS.SO
  10. {
  11. public class BdLyCityDelete : BaseSO
  12. {
  13. public override void Execute(EciContext context)
  14. {
  15. this.ServiceId = FMSService.BdLyCityDelete;
  16. List<string> listKey = context.Request.ListKey;
  17. BdLyCityBLL.Instance.Delete(context.BLLContext,context.Request.ListKey);
  18. context.Response.Message = "删除成功";
  19. }
  20. }
  21. }