Example #1
0
 public void AddHistoryOdds(string scheduleID, string companyids, string historyids, DateTime time)
 {
     try
     {
         HistoryOddsBLL bll = new HistoryOddsBLL();
         StringJSON = bll.Add(scheduleID, companyids, historyids, time);
     }
     catch (Exception e)
     {
         System.Diagnostics.Debug.Write(e);
         throw;
     }
 }
 public void GetOdds1x2Change(string scheduleID, string[] companyids, string[] companynames, string tcompanyid)
 {
     try
     {
         HistoryOddsBLL bll = new HistoryOddsBLL();
         StringJSON = bll.GetOdds1x2ChangeList(scheduleID, companyids, companynames, tcompanyid);
     }
     catch (Exception e)
     {
         System.Diagnostics.Debug.Write(e);
         throw;
     }
 }
Example #3
0
 public void GetOdds1x2DataCount(string scheduleID)
 {
     try
     {
         HistoryOddsBLL bll = new HistoryOddsBLL();
         StringJSON = bll.GetOddsDataCount(scheduleID);
     }
     catch (Exception e)
     {
         System.Diagnostics.Debug.Write(e);
         throw;
     }
 }