/// <inheritdoc/> public Commit GetLatestCommitForCurrentUser(string org, string repository) { try { return(_decoratedService.GetLatestCommitForCurrentUser(org, repository)); } catch (Exception ex) { LogError(ex, "GetLatestCommitForCurrentUser", org, repository); throw; } }
public Commit GetLatestCommitFromCurrentUser(string owner, string repository) { return(_sourceControl.GetLatestCommitForCurrentUser(owner, repository)); }