示例#1
0
 public AHost(IAHost host)
 {
     Host = host;
 }
示例#2
0
        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);
        }