初始化CRICS
This commit is contained in:
19
Dao/IAlarmSettingRepository.cs
Normal file
19
Dao/IAlarmSettingRepository.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 IAlarmSettingRepository : IRepository<AlarmSetting>
|
||||
{
|
||||
IQueryable<AlarmSetting> LoadAll(char type);
|
||||
|
||||
AlarmSetting Get(int hotelID, char type, string code);
|
||||
|
||||
AlarmSetting Get(int hotelID, char type, int modalTypeId);
|
||||
|
||||
AlarmSetting Get(int hotelID, char type, string code, int modalTypeId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user