ILotteryAwardrService.cs 240 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using CB.Entity;
  5. namespace CB.Interface.Infrastructure
  6. {
  7. public interface ILotteryAwardrService
  8. {
  9. IList<LotteryAwardInfo> GetLotteryAwardList();
  10. }
  11. }