Esempio n. 1
0
        public Task <IReadOnlyList <Branch> > GetAllBranches(string owner, string name)
        {
            Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
            Ensure.ArgumentNotNullOrEmptyString(name, "name");

            return(Branch.GetAll(owner, name));
        }
Esempio n. 2
0
        public Task <IReadOnlyList <Branch> > GetAllBranches(long repositoryId, ApiOptions options)
        {
            Ensure.ArgumentNotNull(options, "options");

            return(Branch.GetAll(repositoryId, options));
        }
Esempio n. 3
0
 public Task <IReadOnlyList <Branch> > GetAllBranches(long repositoryId)
 {
     return(Branch.GetAll(repositoryId));
 }