Exemplo n.º 1
0
        public Object PostTakeVideos()
        {
            List <Object> LocList = new List <Object>();
            var           videos  = new DataTblVideo();

            return(videos.InicializarVideos());
        }
Exemplo n.º 2
0
 public Object PostGuardarVideos(object data)
 {
     try
     {
         List <TblVideos> Jloc = JsonConvert.DeserializeObject <List <TblVideos> >(data.ToString());
         var DataVideos        = new DataTblVideo();
         return(DataVideos.GuardarVideos(Jloc));
     }
     catch (Exception)
     {
         throw;
     }
 }
Exemplo n.º 3
0
        public Object PostTakeVideosSlideIndex()
        {
            var videos = new DataTblVideo();

            return(videos.InicializarVideosSlideIndex());
        }