Esempio n. 1
0
 public Video GetVideoHot(string lang)
 {
     VideoDAO VideoDAO = new VideoDAO();
     return VideoDAO.GetVideoHot(lang);
 }
Esempio n. 2
0
 public DataTable GetVideoAll(string lang)
 {
     VideoDAO VideoDAO = new VideoDAO();
     return VideoDAO.GetVideoAll(lang);
 }
Esempio n. 3
-1
 public Video GetVideoById(int Id)
 {
     VideoDAO VideoDAO = new VideoDAO();
     return VideoDAO.GetVideoById(Id);
 }