Added remaining methods on interface

This commit is contained in:
Kristian Hellang
2013-11-24 22:41:56 +01:00
parent 930537af53
commit 742ce856e8
6 changed files with 43 additions and 2 deletions
+22 -1
View File
@@ -1,4 +1,5 @@
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Octokit
{
@@ -17,5 +18,25 @@ namespace Octokit
return ApiConnection.Get<Reference>(ApiUrls.Reference(owner, name, reference));
}
public Task<IReadOnlyList<Reference>> GetAll(string owner, string name, string subNamespace = null)
{
throw new System.NotImplementedException();
}
public Task<Reference> Create(string owner, string name, NewReference reference)
{
throw new System.NotImplementedException();
}
public Task<Reference> Update(string owner, string name, string reference, string sha, bool force = false)
{
throw new System.NotImplementedException();
}
public Task Delete(string owner, string name, string reference)
{
throw new System.NotImplementedException();
}
}
}