初始化CRICS
This commit is contained in:
24
Dao/IRoomServiceRepository.cs
Normal file
24
Dao/IRoomServiceRepository.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Domain;
|
||||
|
||||
namespace Dao
|
||||
{
|
||||
public interface IRoomServiceRepository : IRepository<RoomService>
|
||||
{
|
||||
IList<RoomService> LoadAllByPage(out long total, int page, int rows, string order, string sort, string roomNumber, string startTime, string endTime, string[] services);
|
||||
|
||||
IList<object[]> LoadCurrentRoomServices(int hotelID, IList<int> groupIDs);
|
||||
|
||||
IList<object[]> LoadCurrentRoomAbnormities(int hotelID, IList<int> groupIDs);
|
||||
|
||||
DataTable LoadCurrentRoomServicesOrAbnormitiesCount(int hotelID, int groupID, DeviceType deviceType);
|
||||
|
||||
IList<RoomService> LoadAll(int hostID);
|
||||
|
||||
RoomService Get(int hostID, string alarmCode);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user