using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using Dapper; using Winsoft.GOV.Framework.Model; namespace Winsoft.GOV.Framework.Provider { public class JYOnceRunPowerMattersProvider : OnceRunPowerMattersProvider { private static JYOnceRunPowerMattersProvider instance; public static JYOnceRunPowerMattersProvider Instance { get { CreateInstance(ref instance); return instance; } } public JYOnceRunPowerMattersProvider() : base(County.JY) { } } }