public void Add(Cliente element) { try { _contexto.Cliente.Add(element); _contexto.SaveChanges(); } catch (Exception ex) { throw ex; } }
public void Atualiza(int ID, Cliente element) { throw new NotImplementedException(); }