LotteryAwardService.cs 377 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using CB.Data;
  4. using CB.Entity;
  5. using CB.Interface.Infrastructure;
  6. namespace CB.Data
  7. {
  8. public class LotteryAwardService
  9. {
  10. public static IList<LotteryAwardInfo> GetLotteryAwardList()
  11. {
  12. return DatabaseProvider.GetDbProvider<ILotteryAwardrService>().GetLotteryAwardList();
  13. }
  14. }
  15. }