LQQLSXProvider.cs 634 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Winsoft.GOV.Framework.Model;
  7. using Dapper;
  8. using System.Data;
  9. namespace Winsoft.GOV.Framework.Provider
  10. {
  11. public class LQQLSXProvider : QLSXProvider
  12. {
  13. private static LQQLSXProvider instance;
  14. public LQQLSXProvider() : base(County.LQ)
  15. {
  16. }
  17. public static LQQLSXProvider Instance
  18. {
  19. get
  20. {
  21. CreateInstance(ref instance);
  22. return instance;
  23. }
  24. }
  25. }
  26. }