예제 #1
0
 public bool GuardarDB(ro_rubros_calculados_Info Info)
 {
     try
     {
         return(oData.guardarDB(Info));
     }
     catch (Exception ex)
     {
         throw;
     }
 }
예제 #2
0
 public bool guardarDB(ro_rubros_calculados_Info info)
 {
     try
     {
         if (odata.si_existe(info.IdEmpresa))
         {
             return(odata.modificarDB(info));
         }
         else
         {
             return(odata.guardarDB(info));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }