1234567891011121314151617181920212223 |
- 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 partial class CrmCustomerHtSearch : BaseSO
- {
- public override void Execute(EciContext context)
- {
- this.ServiceId = FMSService.CrmCustomerHtSearch;
- SearchResult result= CrmCustomerHtBLL.Instance.Search(context.BLLContext,context.Request.Paging, context.Request.Entity);
- SearchHelper.ConvertToContext(context, result);
- }
- }
- }
|