初始化CRICS
This commit is contained in:
30
Service/Implement/EnergyConsumptionStatisticsManager.cs
Normal file
30
Service/Implement/EnergyConsumptionStatisticsManager.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Dao;
|
||||
using Domain;
|
||||
|
||||
namespace Service.Implement
|
||||
{
|
||||
public class EnergyConsumptionStatisticsManager : IEnergyConsumptionStatisticsManager
|
||||
{
|
||||
public IEnergyConsumptionStatisticsRepository CurrentRepository { get; set; }
|
||||
|
||||
public void StatisticHostModalEnergy()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public IList<string> LoadRoomNumbers()
|
||||
{
|
||||
return CurrentRepository.LoadRoomNumbers();
|
||||
}
|
||||
|
||||
public DataTable LoadModals(string roomNumber, DeviceType? deviceType)
|
||||
{
|
||||
return CurrentRepository.LoadModals(roomNumber, deviceType);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user