Exemplo n.º 1
0
 public async Task <ActionResult <CVSectionDataset> > GetCVSection([FromRoute] int cvId, [FromRoute] int sectionId)
 {
     if (await _cvService.GetCVById(cvId) == null)
     {
         return(NotFound());
     }
     return(await _cvService.GetCVSection(cvId, sectionId));
 }