using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Service { public interface IUnlockControlManager { /// /// 发送开锁命令给指定主机主机 /// /// void Send(Host host); } }