public void Delete(int id) { try { Usuarios person = Find(id); _context.Remove(person); _context.SaveChanges(); }catch (Exception e) { throw e; } }