ILotteryServerService.cs 438 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using CB.Entity;
  4. namespace CB.Interface.Infrastructure
  5. {
  6. //DT_LotteryServer
  7. public interface ILotteryServerService : IRepository<LotteryServerInfo>
  8. {
  9. /// <summary>
  10. /// 删除服务器对应彩种配置
  11. /// </summary>
  12. /// <typeparam name="TEntity"></typeparam>
  13. /// <param name="entity"></param>
  14. bool DeleteSid(int sid);
  15. }
  16. }