123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Models;
- namespace SCC.Interface
- {
-
-
-
- public interface IOpen7Code
- {
-
-
-
-
-
- OpenCode7Model GetLastItem(SCCLottery lottery);
-
-
-
-
-
-
- List<OpenCode7Model> GetListIn(SCCLottery lottery, bool IsToday);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQList(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
- bool AddOpen7Code(SCCLottery lottery, OpenCode7Model model);
- #region 地方彩
- #endregion
- }
- }
|