using Interface; using Models.Entity.LottomatBaseDB; using Services; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.ZS { public class ZSBLL { static ZXInterface service; static ZSBLL() { service = new ZXServic(); } public static Base_TrendChart GetTrendChartById(string id) { return service.QueryItembyKey(id); } } }