public MainPageViewModel(IGitHubDomainService gitHubDomainService)
 {
     this._gitHubDomainService = gitHubDomainService;
     this.listResult           = new List <HubItem>();
 }
Beispiel #2
0
 public PullRequestsPageViewModel(IGitHubDomainService gitHubDomainService)
 {
     this._gitHubDomainService = gitHubDomainService;
     list = new List <PullRequestItem>();
 }