123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- using FCS.Models;
- using FCS.Models.Entity;
- using System.Collections.Generic;
- namespace FCS.Interface
- {
-
-
-
- public interface IDTOpenCode
- {
-
-
-
-
-
-
- bool AddArea(FCSLottery lottery, F_Area model);
-
-
-
-
-
-
- bool AddEvents(FCSLottery lottery, F_Events model);
-
-
-
-
- List<DataItemDetail> GetDataItem(DataItemDetailEnum dateItem);
-
-
-
-
-
-
- bool AddTeam(FCSLottery lottery, F_Team model);
-
-
-
-
-
-
- bool AddPlayers(FCSLottery lottery, F_Players model);
-
-
-
-
-
-
- bool AddRelation(FCSLottery lottery, F_Relation model);
-
-
-
-
-
-
- F_EuropeanEvents GetAreaId(string Name);
-
-
-
-
-
- void SqlBulkCopyAdd<T>(IEnumerable<T> list);
-
-
-
-
- List<F_Team> GetTeamList();
-
-
-
-
- List<F_Players> GetPlayerList();
-
-
-
-
- List<F_Area> GetContryList();
-
-
-
-
-
- IEnumerable<T> Query<T>(string where = "", string json = "", string select = "a.*");
-
-
-
-
-
- IEnumerable<T> Query_delete<T>(string sql);
-
-
-
-
-
-
-
-
-
- IEnumerable<U> Query<T, U>(string where = "", string json = "", string select = "a.*");
-
-
-
-
-
- IEnumerable<T> Query1<T>(string where = "");
- void Delete<T>(string where = "");
- void Update<T>(string where = "");
- #region 新闻相关
-
-
-
-
-
-
- bool AddNews(NewsTypeEnum news, Base_News model);
- #endregion
-
-
-
-
- List<B_Team> GetBasketTeamList();
-
-
-
-
-
- List<B_Players> GetBasketPalyerList();
- }
- }
|