Ejemplo n.º 1
0
 public GitHubCommit(string nodeId, string url, string label, string @ref, string sha, User user, Repository repository, Author author, string commentsUrl, Commit commit, Author committer, string htmlUrl, GitHubCommitStats stats, IReadOnlyList <GitReference> parents, IReadOnlyList <GitHubCommitFile> files)
     : base(nodeId, url, label, @ref, sha, user, repository)
 {
     Author      = author;
     CommentsUrl = commentsUrl;
     Commit      = commit;
     Committer   = committer;
     HtmlUrl     = htmlUrl;
     Stats       = stats;
     Parents     = parents;
     Files       = files;
 }
Ejemplo n.º 2
0
 public GitHubCommit(string url, string label, string @ref, string sha, User user, Repository repository, Author author, string commentsUrl, Commit commit, Author committer, string htmlUrl, GitHubCommitStats stats, IReadOnlyList<GitReference> parents, IReadOnlyList<GitHubCommitFile> files)
     : base(url, label, @ref, sha, user, repository)
 {
     Author = author;
     CommentsUrl = commentsUrl;
     Commit = commit;
     Committer = committer;
     HtmlUrl = htmlUrl;
     Stats = stats;
     Parents = parents;
     Files = files;
 }