Exemple #1
0
 public IActionResult postularAlumno([FromBody] formularioarmxalumno alumnoxarm)
 {
     try
     {
         var postulado = _alumnoService.postularAlumno(alumnoxarm);
         if (postulado)
         {
             return(Ok());
         }
         else
         {
             return(BadRequest());
         }
     }
     catch (System.Exception)
     {
         throw;
     }
 }