21 lines
487 B
C#
21 lines
487 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using Domain;
|
|||
|
|
|
|||
|
|
namespace Dao
|
|||
|
|
{
|
|||
|
|
public interface ISysHotelGroupRepository : IRepository<SysHotelGroup>
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取指定分组及其所属的子组列表
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="group"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
IList<SysHotelGroup> GetGroupList(SysHotelGroup group);
|
|||
|
|
|
|||
|
|
GroupMenu GetGroupMenu(int id);
|
|||
|
|
}
|
|||
|
|
}
|