Example #1
0
 public qModelSs(qModelSs aModelSs)
 {
     if (this != aModelSs)
     {
         //this = aModelSs;
         throw new System.NotImplementedException();
     }
 }
Example #2
0
 public override qModel newModel()
 {
     try
     {
         qModelSs tModel;
         tModel = new qModelSs();
         return tModel;
     }
     catch
     {
         return null;
         throw new System.ApplicationException("Could not allocate. Bye ...");
     }
 }