public class ContactManager : IDisposable, IManager
{
private ManagerHost m_Host;
public bool IsHostableStatic { get { return false; } }
public ManagerHost Host
{
get { return m_Host; }
private set { m_Host = value; }
}
public void LoadHosted(ManagerHost host)
{
if (host == null)
throw new ArgumentNullException("host");
Host = host;
}
}