public async Task <IActionResult> GetWebInfo(int id)
        {
            var result = await _bll.GetInfoById(id);

            return(Json(result));
        }