public Boolean GrabarDB(tb_Actividades_Horario_Info Info, ref string mensajeErrorOut)
        {
            try
            {
                Odata.GrabarDB(Info, ref mensajeErrorOut);
                OdataAcciones.GrabarDB(Info.listaAcciones, ref mensajeErrorOut);

                return(true);
            }
            catch (Exception ex)
            {
                return(false);
            }
        }
 public bool GrabarDB(List <tb_Actividades_Horario_Acciones_Info> ListInfo, ref string mensajeErrorOut)
 {
     try
     {
         return(Odata.GrabarDB(ListInfo, ref mensajeErrorOut));
     }
     catch (Exception ex)
     {
         return(false);
     }
 }