Example #1
0
 public bool agregar(Int64 cuit, string tel, string cel, string email, string direccion, string razonSocial, int idLocalidad)
 {
     using (var db = new dbDataContext())
     {
         db.InsertarCliente(cuit, tel.ToUpper(), cel.ToUpper(), email.ToUpper(), direccion.ToUpper(), razonSocial.ToUpper(), idLocalidad);
         return(true);
     }
 }