示例#1
0
 public async Task <IEnumerable <Video> > GetAllVideos(Guid id)
 {
     return(await _video.GetAllVideos(id));
 }
示例#2
0
        public ActionResult Index()
        {
            var artist = _videoService.GetAllVideos();

            return(View(artist));
        }