public async Task <IEnumerable <Video> > GetAllVideos(Guid id) { return(await _video.GetAllVideos(id)); }
public ActionResult Index() { var artist = _videoService.GetAllVideos(); return(View(artist)); }