public IActionResult Getcity(int id)
        {
            var list = _bll.Getcity(id);

            return(Ok(new { data = list }));
        }