Example #1
0
		public static void ExecuteAllMethods(UnfuddleRestClient api)
		{
			Console.WriteLine("");
			Console.WriteLine(new string('-', 25));
			Console.WriteLine("Executing ACCOUNTS methods...");

			var accounts = api.GetAccounts();
			Console.WriteLine("Retrieved all accounts. There are {0} accounts.", accounts.Count());


			Console.WriteLine(new string('-', 25));
			Console.WriteLine("");
		}