1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Models;
- namespace SCC.Interface
- {
-
-
-
- public interface IOpen4Code
- {
-
-
-
-
-
- OpenCode4Model GetLastItem(SCCLottery lottery);
-
-
-
-
-
-
- List<OpenCode4Model> GetListIn(SCCLottery lottery, bool IsToday);
-
-
-
-
-
-
-
- List<string> GetYesterdayFailQQList(SCCLottery lottery, int TotalQNum);
-
-
-
-
-
-
- bool AddOpen4Code(SCCLottery lottery, OpenCode4Model model);
- }
- }
|