BdHyCmSearch.cs 572 B

1234567891011121314151617181920212223
  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 partial class BdHyCmSearch : BaseSO
  12. {
  13. public override void Execute(EciContext context)
  14. {
  15. this.ServiceId = FMSService.BdHyCmSearch;
  16. SearchResult result= BdHyCmBLL.Instance.Search(context.BLLContext,context.Request.Paging, context.Request.Entity);
  17. SearchHelper.ConvertToContext(context, result);
  18. }
  19. }
  20. }