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