public bool GuardarDB(ro_rubros_calculados_Info Info) { try { return(oData.guardarDB(Info)); } catch (Exception ex) { throw; } }
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; } }