Пример #1
0
 private bool GetAppInfoData(DateTime assignDateFrom, DateTime assignDateTo, string teamList)
 {
     try
     {
         List <AppInfoData> list = SnapBiz.GetSnapWaitDetailList(assignDateFrom, assignDateTo, teamList);
         if (list.Count > 0)
         {
             rptAppInfo.DataSource = list;
             rptAppInfo.DataBind();
             imgAppInfo.Visible = true;
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }