public void GetOddsDetail(string scheduleID, string companyID)
 {
     try
     {
         NowGoalBLL bll = new NowGoalBLL();
         StringJSON = bll.GetOddsDetail(scheduleID, companyID,"undefined");
     }
     catch (Exception e)
     {
         System.Diagnostics.Debug.Write(e);
         throw;
     }
 }
Example #2
0
 public void GetOddsDetailInfo()
 {
     try
     {
         NowGoalBLL bll = new NowGoalBLL();
         string scheduleID = Request.Form["scheduleID"];
         string companyID = Request.Form["companyID"];
         string dateStr = Request.Form["date"];
         StringJSON = bll.GetOddsDetail(scheduleID, companyID, dateStr);
     }
     catch (Exception e)
     {
         System.Diagnostics.Debug.Write(e);
         throw;
     }
 }