123456789101112131415161718192021222324252627 |
- 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 CrmCustomerLinkSave : BaseSO
- {
- public override void Execute(EciContext context)
- {
- this.ServiceId = FMSService.CrmCustomerLinkSave;
- EntityBase saveEntity = context.Request.Entity;
- bool isAdd = context.Request.IsAdd;
- context.Response.Entity =CrmCustomerLinkBLL.Instance.Save(context.BLLContext,saveEntity,isAdd);
- context.Response.Message =isAdd? "新增成功":"修改成功";
-
- }
- }
- }
|