Esempio n. 1
0
 //---------------------------------------------------------------------------
 public qModelPol(qModelPol aModelPol)
 {
     if (this != aModelPol)
     {
         //this = aModelPol;
         throw new System.NotImplementedException();
     }
 }
Esempio n. 2
0
 //++++++++++++++++++++++++++
 //---------------------------------------------------------------------------
 public new qModel newModel()
 {
     try
     {
         qModelPol tModel;
         tModel = new qModelPol();
         return tModel;
     }
     catch
     {
         throw new System.ApplicationException("Could not allocate. Bye ...");
     }
 }