Exemplo n.º 1
0
 public void registrarPCGame(PCGames PCGames)
 {
     using (EFContext db = new EFContext(ConexionUtil.obtenerCadena()))
     {
         try
         {
             db.PCGames.Add(PCGames);
             db.SaveChanges();
         }
         catch (Exception)
         {
             var operationFault = new InvalidOperationFault { Message = "No se puede ingresar un duplicado" };
             throw new FaultException<InvalidOperationFault>(operationFault);
         }
     }
 }
Exemplo n.º 2
0
 void IPCGames.registrarPCGame(int codigo, string descripcion)
 {
     PCGames cc = new PCGames(codigo, descripcion);
     PCGamesDAO ccDAO = new PCGamesDAO();
     ccDAO.registrarPCGame(cc);
 }