123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using CB.Data;
- using CB.Entity;
- using CB.Interface.Infrastructure;
- namespace CB.Data
- {
- public class LotteryAwardService
- {
- public static IList<LotteryAwardInfo> GetLotteryAwardList()
- {
- return DatabaseProvider.GetDbProvider<ILotteryAwardrService>().GetLotteryAwardList();
- }
- }
- }
|