Exemple #1
0
 //---------------------------------------------------------------------------
 public qModelExp(qModelExp aModelExp)
 {
     if (this != aModelExp)
     {
         //this = aModelExp;
         throw new System.NotImplementedException();
     }
 }
Exemple #2
0
 //++++++++++++++++++++++++++
 //---------------------------------------------------------------------------
 public new qModel newModel()
 {
     try
     {
         qModelExp tModel;
         tModel = new qModelExp();
         return tModel;
     }
     catch
     {
         throw new System.ApplicationException("Could not allocate. Bye ...");
         return null;
     }
 }