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