12345678910111213141516171819202122232425262728 |
- using Dapper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Winsoft.GOV.Framework.Model;
- namespace Winsoft.GOV.Framework.Provider
- {
- public class LSNotificationOfActionProvider : NotificationOfActionProvider
- {
- private static LSNotificationOfActionProvider instance;
- public static LSNotificationOfActionProvider Instance
- {
- get
- {
- CreateInstance(ref instance);
- return instance;
- }
- }
- public LSNotificationOfActionProvider() : base(County.LS)
- {
- }
- }
- }
|