Пример #1
0
        public async Task <IActionResult> GetUserProjectByIDAsync(int userProjectID)
        {
            var userProject = await _projectBL.GetUserProjectByIDAsync(userProjectID);

            if (userProject == null)
            {
                return(NotFound());
            }
            return(Ok(userProject));
        }