public async Task UpdateSchoolsDb()
        {
            IList <School> x = await _SchoolService.ReadApiAsync();

            await _SchoolService.ClearDBAsync();

            await _SchoolService.UpdateDBAsync(x);
        }