| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using Models;
 
- using Models.Entity.LotteryNumDB;
 
- namespace Interface
 
- {
 
-     
 
-     
 
-     
 
-     public interface IOpen3Code
 
-     {
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         OpenCode3Model GetLastItem(SCCLottery lottery);
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         List<OpenCode3Model> GetListIn(SCCLottery lottery, bool IsToday);
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         List<string> GetYesterdayFailQQList(SCCLottery lottery, int TotalQNum);
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         bool AddOpen3Code(SCCLottery lottery, OpenCode3Model model);
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         List<string> GetYesterdayFailQQQList(SCCLottery lottery, int TotalQNum);
 
-     }
 
- }
 
 
  |