12345678910111213141516171819202122232425 |
- using PL.Base;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Data;
- using FMS.BLL;
- using FMS.ServiceList;
- namespace FMS.SO
- {
- public class BdLyCityDelete : BaseSO
- {
- public override void Execute(EciContext context)
- {
- this.ServiceId = FMSService.BdLyCityDelete;
- List<string> listKey = context.Request.ListKey;
- BdLyCityBLL.Instance.Delete(context.BLLContext,context.Request.ListKey);
- context.Response.Message = "删除成功";
- }
- }
- }
|