初始化CRICS
This commit is contained in:
26
Dao/IHostFaultsRepository.cs
Normal file
26
Dao/IHostFaultsRepository.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Domain;
|
||||
|
||||
namespace Dao
|
||||
{
|
||||
public interface IHostFaultsRepository : IRepository<HostFaults>
|
||||
{
|
||||
IQueryable<HostFaults> LoadAllByPage(out long total, int page, int rows, string order, string sort, int hotelID);
|
||||
|
||||
HostFaults Get(int hostID, string address);
|
||||
|
||||
IList<object[]> LoadCurrentHostFaultStatistics(int hotelID, IList<int> groupIDs, int type);
|
||||
|
||||
//IList<object[]> LoadCurrentHostFault(int hostID);
|
||||
|
||||
IList<object[]> LoadHostFault(int hostID);
|
||||
|
||||
void DeleteByAddress(string address, int roomTypeID);
|
||||
|
||||
void DeteleByHostID(int hostID);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user