public ManageWebServiceInputViewModel(IWebServiceBaseViewModel model, IWebServiceModel serviceModel)
 {
     PasteResponseAvailable = true;
     IsTesting            = false;
     CloseCommand         = new DelegateCommand(ExecuteClose);
     OkCommand            = new DelegateCommand(ExecuteOk);
     PasteResponseCommand = new DelegateCommand(ExecutePaste);
     TestCommand          = new DelegateCommand(ExecuteTest);
     _generateOutputArea  = new GenerateOutputsRegion();
     _generateInputArea   = new GenerateInputsRegion();
     Errors       = new List <string>();
     _viewmodel   = model;
     _serverModel = serviceModel;
 }
 public InputViewForWebPostTest(IWebServiceBaseViewModel model, IWebServiceModel serviceModel)
     : base(model, serviceModel)
 {
 }