public static string GetVideoVile(VideosView video)
        {
            if (StringUtils.IsNullOrWhiteSpace(video.VideoFile))
            {
                return("");
            }

            return(Path.Combine(Folders.VideosFolder, video.VideoFile));
        }
        public static string GetThumbImage(VideosView video)
        {
            if (StringUtils.IsNullOrWhiteSpace(video.ThumbImage))
            {
                return("");
            }

            return(Path.Combine(Folders.VideoThumbsFolder, video.ThumbImage));
        }