public IEnumerable <Video> ListVideos()
        {
            if (listCache == null || needReset)
            {
                listCache = _service.ListVideos();
            }

            return(listCache);
        }
예제 #2
0
 public void RenderListPanel()
 {
     var list = _service.ListVideos();
     // 渲染视频页面。
 }