Beispiel #1
0
 public MainViewModel(GitHubModel model)
 {
     Model = model;
 }
Beispiel #2
0
 public IssuesViewModel(GitHubModel model)
 {
     _model = model;
 }
 public IssueDetailsViewModel(GitHubModel model)
 {
     _model = model;
 }
Beispiel #4
0
 public AddIssueViewModel(GitHubModel model, Dispatcher dispatcher)
 {
     _model = model;
     _dispatcher = dispatcher;
 }