JNPowerMettersDetailProvider.cs 705 B

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