예제 #1
0
        public async Task <IActionResult> GetUsersSampleByUserIDAsync(int userID)
        {
            var usersSample = await _projectBL.GetUsersSampleByUserIDAsync(userID);

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