Ejemplo n.º 1
0
 public bool RegistraNuevaCuenta   (SEG_MaestroCias model)
 {
     DataICDigitalDataContext db = new DataICDigitalDataContext();
     db.SEG_MaestroCias.InsertOnSubmit(model);
     db.SubmitChanges();
     return true;
 }
Ejemplo n.º 2
0
        public bool RegistraCliente(GRL_MaestroClientes model)
        {
            DataICDigitalDataContext db = new DataICDigitalDataContext();

            db.GRL_MaestroClientes.InsertOnSubmit(model);
            db.SubmitChanges();
            return(true);
        }