Package fing.satode.dominio

Examples of fing.satode.dominio.Perfil


  }


  public void nuevoPerfil(PerfilDTO perfil) {
    // TODO Auto-generated method stub
    Perfil p= new Perfil(perfil);
    UsuarioDAO.getInstance().nuevoPerfil(p);
  }
View Full Code Here


  }


  public void modificarPerfil(PerfilDTO perfil) {
    // TODO Auto-generated method stub
    Perfil p= new Perfil(perfil);
    UsuarioDAO.getInstance().modificarPerfil(p);
  }
View Full Code Here

  }


  public void eliminarPerfil(PerfilDTO perfil) {
    // TODO Auto-generated method stub
    Perfil p= new Perfil(perfil);
    UsuarioDAO.getInstance().eliminarPerfil(p);
   
  }
View Full Code Here

TOP

Related Classes of fing.satode.dominio.Perfil

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.