| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using Models;
 
- using Models.Entity.LotteryNumDB;
 
- namespace 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);
 
-     }
 
- }
 
 
  |