예제 #1
0
 public static void PruebaDeServicio()
 {
     try
     {
         PruebaEnvioCarpetaLocal ejecutaPrueba = new PruebaEnvioCarpetaLocal();
         ejecutaPrueba.EnvioCarpetaLocal();
     }
     catch (Exception ex)
     {
         ELog.save(ex);
     }
 }
예제 #2
0
 public static void Prueba()
 {
     try
     {
         int v1 = 5;
         int v2 = 0;
         int v3 = v1 / v2;
     }
     catch (Exception ex)
     {
         ELog.save(ex);
     }
 }