refactor utilities into seperate namespace

This commit is contained in:
2013-06-19 23:05:12 +02:00
parent 95aa0d0841
commit 91c2fadacf
6 changed files with 73 additions and 11 deletions
+4 -2
View File
@@ -14,11 +14,13 @@ namespace PocketSharp.Console
// this apiKey is just for demonstration purposes
// please create your own application and retrieve it's key. It's a 1-step process ;-)
PocketClient client = new PocketClient("15396-f6f92101d72c8e270a6c9bb3");
PocketClient client = new PocketClient(
consumerKey: "15396-f6f92101d72c8e270a6c9bb3"
);
client.Retrieve(new RetrieveParameters()
{
Favorite = true
});
System.Console.ReadKey();