13 lines
443 B
C#
13 lines
443 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_GROUPLEADER_Q
|
|
{
|
|
List<WX.CRM.Model.Entity.BAS_GROUPLEADER> GetList(string gName, string eID);
|
|
List<WX.CRM.Model.Entity.BAS_GROUPLEADER> GetListGroupLeaderByUserId(decimal UserId);
|
|
List<WX.CRM.Model.Entity.BAS_GROUPLEADER> GetList();
|
|
WX.CRM.Model.Entity.BAS_GROUPLEADER GetInfo(decimal gid, decimal userid);
|
|
}
|
|
}
|