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 QYOnceRunPowerMattersProvider : OnceRunPowerMattersProvider { private static QYOnceRunPowerMattersProvider instance; public static QYOnceRunPowerMattersProvider Instance { get { CreateInstance(ref instance); return instance; } } public QYOnceRunPowerMattersProvider() : base(County.QY) { } } }