예제 #1
0
파일: qModelFsg.cs 프로젝트: wouldyougo/EMD
 //---------------------------------------------------------------------------
 public qModelFsg(qModelFsg aModelFsg)
 {
     //if(this != aModelFsg)
     {
         // this = aModelFsg;
         throw new System.NotImplementedException();
     }
 }
예제 #2
0
파일: qModelFsg.cs 프로젝트: wouldyougo/EMD
 //---------------------------------------------------------------------------
 public new qModel newModel()
 {
     try
     {
         qModelFsg tModel;
         tModel = new qModelFsg();
         return tModel;
     }
     catch
     {
         throw new System.ApplicationException("Could not allocate. Bye ...");
     }
 }