LSNotificationOfActionProvider.cs 656 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 LSNotificationOfActionProvider : NotificationOfActionProvider
  10. {
  11. private static LSNotificationOfActionProvider instance;
  12. public static LSNotificationOfActionProvider Instance
  13. {
  14. get
  15. {
  16. CreateInstance(ref instance);
  17. return instance;
  18. }
  19. }
  20. public LSNotificationOfActionProvider() : base(County.LS)
  21. {
  22. }
  23. }
  24. }