public ModelBuilder(IModel model)
 {
     this.model = model as CobolModel;
     if (this.model == null)
     {
         throw new ArgumentException("model is not the correct type: " + model.GetType());
     }
 }
Beispiel #2
0
 public ModelBuilder(IModel model)
 {
     this.model = model as CobolModel;
     if (this.model == null)
     {
         throw new ArgumentException("model is not the correct type: " + model.GetType());
     }
 }