public IActionResult GetallCommonResources() { var res = _commonResourcesServices.GetAll(); if (res.Any()) { return(Ok(res)); } return(NotFound()); }