public AHost(IAHost host) { Host = host; }
public AModel(IAHost host, string connectionString, string modelCode, bool defferedLoad) { _db = new AFbLink(connectionString); AHost ahost = new AHost(host); _model = new PPlatform(_db, modelCode, defferedLoad, ahost).Model; //_model.HostRequest += new EventHandler<HostQueryEventArgs>(ProcessHostRequest); }