using Muchinfo.MTPClient.Data; using Muchinfo.MTPClient.Data.Model.DBTableMsg; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.IService { /// /// 数据库表信息服务接口 /// public interface IDBTableMsgService { /// /// 查询合约单位 /// /// QueryAllGoodsUnit /// 查询参数 /// 成功执行 /// 失败执行 void SearchAllGoodsUnit(string statement, List queryCommonParams, Action> successAction, Action errorAction); } }