12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Models;
- namespace SCC.Interface
- {
- public interface IOpen9Code
- {
-
-
-
-
-
- OpenCode9Model GetLastItem(SCCLottery lottery);
-
-
-
-
-
-
- List<OpenCode9Model> GetListIn(SCCLottery lottery, bool IsToday);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQList(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
- bool AddOpen9Code(SCCLottery lottery, OpenCode9Model model);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQQList(SCCLottery lottery, int TotalQNum);
- }
- }
|