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