public async Task Delete(User user) { try { _context.Remove(user); await _context.SaveChangesAsync(); } catch (Exception ex) { throw new Exception($"No se pudo eliminar el usuario: {ex.Message}\n"); } }