private async Task InitClient()
        {
            _client = new DocumentClient(new Uri(Uri), Key);
            _database = await _client.GetDatabase("reportdb");
            _documentCollection = await _client.GetCollection(_database, "reports");

            if (HasReports() == false)
            {
                await CreateDummyReportsAsync();
            }
        }