SYNotificationOfActionProvider.cs 629 B

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