示例#1
0
 void IPCGames.registrarPCGame(int codigo, string descripcion)
 {
     PCGames cc = new PCGames(codigo, descripcion);
     PCGamesDAO ccDAO = new PCGamesDAO();
     ccDAO.registrarPCGame(cc);
 }
示例#2
0
 List<PCGamesEntity.PCGames> IPCGames.listarPCGame()
 {
     PCGamesDAO ccDAO = new PCGamesDAO();
     var result = ccDAO.listarPCGames();
     return result;
 }