Exemplo n.º 1
0
        public IActionResult GetAllByProject(int id)
        {
            var model = _userSprintService.GetAllByProject(id);

            if (model == null)
            {
                return(NotFound());
            }

            return(Ok(model));
        }