예제 #1
0
 public bool AgregarUsuarios(usuarioClase u)
 {
     using (librosmclEntities lb = new librosmclEntities())
     {
         try
         {
             usuario x = new usuario();
             x.run    = u.run;
             x.nombre = u.nombre;
             x.user   = u.user;
             x.pass   = u.pass;
             x.activo = u.activo;
             x.tipo   = u.tipo;
             lb.usuario.Add(x);
             lb.SaveChanges();
             return(true);
         }
         catch
         {
             return(false);
         }
     };
 }
예제 #2
0
 public bool EliminarUsuarios(usuarioClase x)
 {
     throw new NotImplementedException();
 }