public void OObtenerDetalleVideo(GM_VideosLoad Datos) { try { GM_VideoDatos CDV = new GM_VideoDatos(); CDV.ObtenerDetalleVideo(Datos); } catch (Exception ex) { throw ex; } }
public void EliminarSVideo(GM_VideosLoad Datos) { try { GM_VideoDatos CD = new GM_VideoDatos(); CD.EliminarVideoID(Datos); } catch (Exception ex) { throw ex; } }
public void ACStatuVideo(GM_VideosLoad Datos) { try { GM_VideoDatos CD = new GM_VideoDatos(); CD.AGModuloVideo(Datos); } catch (Exception ex) { throw ex; } }
public List <GM_VideosLoad> ObtenerListStatusVideoPagina(GM_VideosLoad Datos) { try { GM_VideoDatos CD = new GM_VideoDatos(); return(CD.ObtenerDetalleVideoPagina(Datos)); } catch (Exception ex) { throw ex; } }