public RepositoryContributorsViewModel(INavigationService navigationService, IGitHubHost github)
		{
			this.navigationService = navigationService;
			this.github = github;

			DisplayName = "contributors";
		}
        public RepositoryContributorsViewModel(INavigationService navigationService, IGitHubHost github)
        {
            this.navigationService = navigationService;
            this.github            = github;

            DisplayName = "contributors";
        }
		public UserRepositoriesViewModel(INavigationService navigationService, IGitHubHost gitHubHost)
		{
			this.navigationService = navigationService;
			this.gitHubHost = gitHubHost;
			DisplayName = "repositories";
		}
 public UserDetailsViewModel(IGitHubHost gitHubHost)
 {
     this.gitHubHost = gitHubHost;
     DisplayName     = "details";
 }
		public UserWatchingViewModel(INavigationService navigationService, IGitHubHost gitHubHost)
		{
			this.navigationService = navigationService;
			this.gitHubHost = gitHubHost;
			DisplayName = "watching";
		}
Exemple #6
0
 public RepositoryDetailsViewModel(IGitHubHost github)
 {
     this.github = github;
     DisplayName = "details";
 }
Exemple #7
0
 public UserRepositoriesViewModel(INavigationService navigationService, IGitHubHost gitHubHost)
 {
     this.navigationService = navigationService;
     this.gitHubHost        = gitHubHost;
     DisplayName            = "repositories";
 }
 public UserWatchingViewModel(INavigationService navigationService, IGitHubHost gitHubHost)
 {
     this.navigationService = navigationService;
     this.gitHubHost        = gitHubHost;
     DisplayName            = "watching";
 }
		public RepositoryDetailsViewModel(IGitHubHost github)
		{
			this.github = github;
			DisplayName = "details";
		}