12345678910111213141516171819202122232425 |
- 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();
- /// <summary>
- /// 获取所有的报警类型
- /// </summary>
- /// <returns></returns>
- public IEnumerable<AlermType> GetAllAlermTypes()
- {
- return service.GetAllAlermTypes();
- }
- }
- }
|