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 GetLotteryAwardList() { return DatabaseProvider.GetDbProvider().GetLotteryAwardList(); } } }