public MainWindow() { InitializeComponent(); RestTestService restTest = new RestTestService(); DataContext = new MainViewModel(restTest); }
public MainViewModel(RestTestService restTestService) { restTest = restTestService; GetCommand = new DelegateCommand <string>(GetExecute); PostCommand = new DelegateCommand <string>(PostExecute); }