QYBranchProvider.cs 639 B

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