public async Task <ActionResult <string> > Post([FromBody] DatabaseHostModel dbhost)
        {
            await _repo.AddHost(dbhost);

            _cache.Remove(CacheKeys.Entry);

            return("Record Added");
        }