public Video GetVideoHot(string lang) { VideoDAO VideoDAO = new VideoDAO(); return VideoDAO.GetVideoHot(lang); }
public DataTable GetVideoAll(string lang) { VideoDAO VideoDAO = new VideoDAO(); return VideoDAO.GetVideoAll(lang); }
public Video GetVideoById(int Id) { VideoDAO VideoDAO = new VideoDAO(); return VideoDAO.GetVideoById(Id); }