123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Models;
- namespace SCC.Interface
- {
-
-
-
- public interface IOpen10Code
- {
-
-
-
-
-
- OpenCode10Model GetLastItem(SCCLottery lottery);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQQList(SCCLottery lottery, List<string> Terms);
-
-
-
-
-
-
- bool AddOpen10Code(SCCLottery lottery, OpenCode10Model model);
- #region MyRegion
-
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailQQListDB10(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
- Dictionary<string, string> GetYesterdayFailQQListDB10_toDay(SCCLottery lottery, int TotalQNum);
- #endregion
- }
- }
|