コード例 #1
0
ファイル: PruebaBL.cs プロジェクト: jalpiste/cyltrack
        public int ModificarPrueba(PruebaBE prueba)
        {
            PruebaDL pru = new PruebaDL();
            int resp = 0;
            try
            {
                resp = pru.ModificarPrueba(prueba);
            }
            catch (Exception ex)
            {
                //guardar exepcion en el log de bd
                resp = -1;
            }

            return resp;
        }