예제 #1
0
        public async Task <IActionResult> GetSection(int id)
        {
            var section = await _repo.GetSection(id);

            return(Ok(section));
        }