12345678910111213141516171819202122232425262728 |
- 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<Base_TrendChart>(id);
- }
- }
- }
|