using FLY.Thick.Blowing.Common; using FLY.Thick.Blowing.IService; using FLY.Thick.Blowing.OBJ_INTERFACE; using FObjBase; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLY.Thick.Blowing.Client { public class BlowingFixProfileServiceClient : FObjBase.Reflect.Reflect_SeviceClient, IBlowingFixProfileService { protected override Type InterfaceType => typeof(IBlowingFixProfileService); public BlowingFixProfileServiceClient(UInt32 serviceId) : base(serviceId) { } public BlowingFixProfileServiceClient(UInt32 serviceId, string connName) : base(serviceId, connName) { } #region IProfileService 接口 public BlowingFixProfileParam Param { get; } = new BlowingFixProfileParam(); /// /// 应用 & 保存 /// public void Apply(BlowingFixProfileParam param) { Call(nameof(Apply), new { param }); } /// /// 获取产品列表, 返回类型为 List<string> /// /// /// public void GetList(AsyncCBHandler asyncDelegate, object asyncContext) { Call(nameof(GetList), null, asyncDelegate, asyncContext); } /// /// 删除指定产品 /// /// public void Del(string productname) { Call(nameof(Del), new { productname }); } /// /// 读取指定产品,返回类型为 ProfileParam /// /// /// /// public void Read(string productname, AsyncCBHandler asyncDelegate, object asyncContext) { Call(nameof(Read), new { productname }, asyncDelegate, asyncContext); } #endregion } }