初始化CRICS
This commit is contained in:
19
Dao/IRoomCardRepository.cs
Normal file
19
Dao/IRoomCardRepository.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Domain;
|
||||
|
||||
namespace Dao
|
||||
{
|
||||
public interface IRoomCardRepository : IRepository<RoomCard>
|
||||
{
|
||||
IQueryable<RoomCard> LoadAllByPage(out long total, int page, int rows, string order, string sort, int hotelID);
|
||||
|
||||
RoomCard GetByCarNumber(string cardNumber, int hotelID);
|
||||
|
||||
RoomCard Get(RoomCardType roomCardType, int hotelID);
|
||||
|
||||
RoomCard GetByCartType(RoomCardType cardType, string cardNumber, int hotelID);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user