using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Domain;
namespace Service
{
public interface ILightControlManager
{
///
/// 应用场景到指定主机
///
/// 主机
/// 场景
/// 是否取反
void ApplyScene(Host host, RoomTypeScene scene, bool takeInverse = false);
///
/// 批量控制设备
///
///
///
void AllDeviceControl(Host host, List devices);
void ApplyScene_Repeat(string Key,Host host, RoomTypeScene scene, bool takeInverse = false);
void AllDeviceControl_Repeat(string Key,Host host, List devices);
}
}