Exemple #1
0
 public async Task <ResponseDTO> Post([FromBody] ComentariosDTO comentario)
 {
     try
     {
         if (ModelState.IsValid)
         {
             return(await _comentarioService.CrearPelicula(comentario));
         }
         return(null);
     }
     catch (Exception)
     {
         throw;
     }
 }