初始化CRICS
This commit is contained in:
20
Service/IHostRoomCardManager.cs
Normal file
20
Service/IHostRoomCardManager.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Domain;
|
||||
using System.Data;
|
||||
|
||||
namespace Service
|
||||
{
|
||||
public interface IHostRoomCardManager : IGenericManager<HostRoomCard>
|
||||
{
|
||||
IList<HostRoomCard> LoadAllByPage(out long total, int page, int rows, string order, string sort, int hotelID, string roomNumber, int roomCardTypeID, string cardNumber, string userName, DateTime startTime, DateTime endTime);
|
||||
|
||||
IList<HostRoomCard> LoadAll(int hotelID, string roomNumber, string userName);
|
||||
|
||||
void DeleteAll(int hotelID);
|
||||
|
||||
DataTable LoadHostRoomCard(out long total, int page, int rows, string order, string sort, int hotelID, string cardType, string roomNumber, string userName, string cardNumber, string startDate, string endDate);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user