using Interface;
using Models.Entity.LotteryNumDB;
using Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.WF
{
public static class PlayRuleBLL
{
private static LotteryNumInterface services;
static PlayRuleBLL()
{
services = new LotteryService();
}
///
/// 根据彩票种类itemid得到其玩法规则
///
/// 彩票种类itemId
///
public static B_Awards GetAwardByPrizeID(string id)
{
return services.QueryItembyKey(id);
}
}
}