예제 #1
0
 public DataTable FillVideoGridpager(int Langid, string title, string filetype, int PageSize, int PageIndex)
 {
     try
     {
         UploadVideoDAL objUploadVideo_DAL = new UploadVideoDAL();
         DataTable      dt = new DataTable();
         dt = objUploadVideo_DAL.FillVideoGridpager(Langid, title, filetype, PageSize, PageIndex);
         return(dt);
     }
     catch (Exception)
     {
         return(null);
     }
     finally
     {
     }
 }