using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Domain;
namespace Service
{
public interface ISearchHostManager
{
///
/// 开始搜索主机
///
///
void Start(SearchHostResultHandler handler);
///
/// 发送搜索主机命令
///
void Start();
///
/// 当前搜索主机用户
///
string User { get; set; }
///
/// 是否正在搜索主机
///
bool Searching { get; }
///
/// 停止搜索主机
///
void Stop();
///
/// 更新搜索主机网关、子网掩码、版本号等信息
///
///
bool UpdateHost(SearchHost host, int hotelID);
}
}