15 lines
390 B
C#
15 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_INNERUSERGROUP_Q
|
|
{
|
|
BAS_INNERUSERGROUP GetModel(decimal inneruserId);
|
|
List<BAS_INNERUSERGROUP> GetList();
|
|
List<BAS_INNERUSERGROUP> GetList(Expression<Func<BAS_INNERUSERGROUP, bool>> where);
|
|
}
|
|
}
|