ZSBLL.cs 533 B

12345678910111213141516171819202122232425262728
  1. using Interface;
  2. using Models.Entity.LottomatBaseDB;
  3. using Services;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Business.ZS
  10. {
  11. public class ZSBLL
  12. {
  13. static ZXInterface service;
  14. static ZSBLL()
  15. {
  16. service = new ZXServic();
  17. }
  18. public static Base_TrendChart GetTrendChartById(string id)
  19. {
  20. return service.QueryItembyKey<Base_TrendChart>(id);
  21. }
  22. }
  23. }