初始化CRICS
This commit is contained in:
20
Dao/ISysHotelGroupRepository.cs
Normal file
20
Dao/ISysHotelGroupRepository.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user