Ejemplo n.º 1
0
 public SchemaChecker()
 {
     this.settings         = new JSchemaReaderSettings();
     this.exampleGenerator = new ExampleGenerator();
     //ED: Comment me out
     //this.settings.Validators = new List<JsonValidator>() { new GuidFormatValidator() };
 }
        public ExamplesBoardViewModel()
        {
            _exampleGenerator = new ExamplesGenerator();

            Messages = new ObservableCollection<string>();
            RunExampleCommand = new DelegateCommand(RunExample, CanRunExample);
            ConfirmationCommand = new DelegateCommand(Confirmation, CanConfirmation);
        }