KFQQLSXProvider.cs 639 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 KFQQLSXProvider : QLSXProvider
  12. {
  13. private static KFQQLSXProvider instance;
  14. public KFQQLSXProvider() : base(County.KFQ)
  15. {
  16. }
  17. public static KFQQLSXProvider Instance
  18. {
  19. get
  20. {
  21. CreateInstance(ref instance);
  22. return instance;
  23. }
  24. }
  25. }
  26. }