ComplianceServer/oldcode/IBLL/Ord/IORD_MEMOCONTENT_Q.cs

14 lines
380 B
C#

using System.Collections.Generic;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Ord
{
public interface IORD_MEMOCONTENT_Q
{
ORD_MEMOCONTENT GetInfo_OrdMemoContent(decimal pkid);
Dictionary<string, ORD_MEMOCONTENT> GetOrdMemoContentByIds(List<string> coids);
List<ORD_MEMOCONTENT> GetOrdMemoContent(IEnumerable<decimal> contentIds);
}
}