123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Models;
- namespace SCC.Interface
- {
-
-
-
- public interface IOpen5Code
- {
-
-
-
-
-
- OpenCode5Model GetLastItem(SCCLottery lottery);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQList(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQQList(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
- bool AddOpen5Code(SCCLottery lottery, OpenCode5Model model);
-
-
-
-
-
-
-
- List<string> GetGXKL10FYesterdayFailQQList(SCCLottery lottery, string SkipDate, int TotalQNum);
-
-
-
-
-
-
- List<string> GetXJ11X5YesterdayFailQQList(int TotalQNum);
- #region MyRegion
-
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailQQListDB5(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailQQListDB5_toDay(SCCLottery lottery, int TotalQNum);
- #endregion
- #region MyRegion 快乐12
-
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailQQQListDB5(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailQQQListDB5_toDay(SCCLottery lottery, int TotalQNum);
- #endregion
- #region MyRegion 广西快乐10
-
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailDayListDB5(SCCLottery lottery, string SkipDate, int TotalQNum);
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailDayListDB5_toDay(SCCLottery lottery, string SkipDate, int TotalQNum);
- #endregion
- }
- }
|