public async Task <ActionResult> Update(int id, DocenteUpdateDto model)
        {
            if (_DocenteService.Existencia(id) == true)
            {
                await _DocenteService.Update(id, model);

                return(NoContent());
            }
            else
            {
                return(NotFound());
            }
        }