예제 #1
0
        public IActionResult GetallCommonResources()
        {
            var res = _commonResourcesServices.GetAll();

            if (res.Any())
            {
                return(Ok(res));
            }
            return(NotFound());
        }