Esempio n. 1
0
 public async Task <ActionResult <List <CVSectionDataset> > > GetCVSections([FromRoute] int cvId)
 {
     if (await _cvService.GetCVById(cvId) == null)
     {
         return(NotFound());
     }
     return(await _cvService.GetCVSections(cvId));
 }