using Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Interface { public interface LotteryNumInterface:BaseInterface { T GetLastItem(SCCLottery lottery); List GetLastItems(SCCLottery lottery, int days, bool kjhOrsjh = false); KaijiangDetailsEntity GetKJItem(string type, string id); List GetTopNumList(SCCLottery lottery, string order, int num = 1, Boolean isdesc = true, bool kjhOrsjh = false); List GetList(string tablename, List expression, string order, bool isDesc = true, bool kjhOrsjh = false); List ToList(); } }