ComplianceServer/oldcode/IBLL/Res/IRES_CUSTOMERUSER_Q.cs

20 lines
740 B
C#

using System.Collections.Generic;
namespace WX.CRM.IBLL.Res
{
public interface IRES_CUSTOMERUSER_Q
{
WX.CRM.Model.Entity.RES_CUSTOMERUSER GetModelByUserName(string username);
List<WX.CRM.Model.Entity.RES_CUSTOMERUSER> GetListByUserName(string username);
/// <summary>
/// 获取实体
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
WX.CRM.Model.Entity.RES_CUSTOMERUSER GetModelByUserNo(decimal userno);
List<WX.CRM.Model.Entity.RES_CUSTOMERUSER> GetModelByResId(string ResId);
//根据主客户ID获取所有的用户名信息
List<WX.CRM.Model.Entity.RES_CUSTOMERUSER> GetListByCustomerId(string CustomerId);
}
}