12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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<OpenCode10Model> GetListIn(SCCLottery lottery, bool IsToday);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQQList(SCCLottery lottery, List<string> Terms);
-
-
-
-
-
-
- bool AddOpen10Code(SCCLottery lottery, OpenCode10Model model);
- }
- }
|