JNOnceRunPowerMattersProvider.cs 671 B

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