Files
Web_CRICS_Server_VS2010_Prod/Service/Implement/HostRCUManager.cs

30 lines
838 B
C#
Raw Normal View History

2025-12-11 09:17:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Domain;
using Dao;
using RCUHost;
using RCUHost.Protocols;
namespace Service.Implement
{
public class HostRCUManager : GenericManagerBase<HostRCU>, IHostRCUManager
{
public IQueryable<HostRCU> LoadAllByPage(out long total, int page, int rows, string order, string sort, int hotelID)
{
return ((IHostRCURepository)CurrentRepository).LoadAllByPage(out total, page, rows, order, sort, hotelID);
}
public HostRCU GetByHostID(int hostID)
{
return ((IHostRCURepository)CurrentRepository).GetByHostID(hostID);
}
public List<HostRCU> LoadAll(int hotelID)
{
return ((IHostRCURepository)CurrentRepository).LoadAll(hotelID);
}
}
}