public NewItemFactoryTypeModel(Type type, NewItemFactory factory)
 {
     this.type = type;
     this.factory = factory;
     this.desiredSize = new Size(0, 0);
     this.exceptionLogger = null;
 }
 public NewItemFactoryTypeModel(Type type, NewItemFactory factory, IMessageLogger exceptionLogger) : this(type, factory)
 {
     this.exceptionLogger = exceptionLogger;
 }