BdLyCityLoad.cs 471 B

123456789101112131415161718192021
  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 BdLyCityLoad : BaseSO
  12. {
  13. public override void Execute(EciContext context)
  14. {
  15. this.ServiceId = FMSService.BdLyCityLoad;
  16. context.Response.DataTable = BdLyCityBLL.Instance.Load(context.BLLContext,context.Request.Key);
  17. }
  18. }
  19. }