public async Task DeleteTimeEntryAsync(string id) { try { var result = await _client.Delete <TimeEntry>(id); } catch (Exception ex) { Console.WriteLine(ex); throw; } }