Skip to content

Commit

Permalink
wip #33
Browse files Browse the repository at this point in the history
  • Loading branch information
kfrancis committed Aug 16, 2016
1 parent fed294f commit b0b7ac7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/Chargify.NET/ChargifyConnect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5253,21 +5253,25 @@ private INote CreateNote(int subscriptionId, string body, bool sticky = false)

public IDictionary<int, INote> GetNotesForSubscription(int SubscriptionID)
{
// TODO
throw new NotImplementedException();
}

public INote LoadNote(int SubscriptionID, int NoteID)
{
// TODO
throw new NotImplementedException();
}

public bool DeleteNote(int SubscriptionID, int NoteID)
{
// TODO
throw new NotImplementedException();
}

public INote UpdateNote(int SubscriptionID, INote UpdatedNote)
{
// TODO
throw new NotImplementedException();
}
#endregion
Expand Down

0 comments on commit b0b7ac7

Please sign in to comment.