using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LeaRun.Application.Entity.DataAlarm;
using LeaRun.Application.Service.DataAlarm;
namespace LeaRun.Application.Busines.DataAlarm
{
public class AlermTypeBLL
{
AlermTypeService service = new AlermTypeService();
///
/// 获取所有的报警类型
///
///
public IEnumerable GetAllAlermTypes()
{
return service.GetAllAlermTypes();
}
}
}