Beispiel #1
0
        public async Task <IActionResult> GetStudyUserTasks(int studyId, int userId)
        {
            var getAllUserTasks = await _taskLogic.GetUserTasks(studyId, userId);

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

            return(Ok(getAllUserTasks));
        }