12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Winsoft.GOV.Framework.Model;
- using Dapper;
- namespace Winsoft.GOV.Framework.Provider
- {
- public class JNBranchProvider : BranchProvider
- {
- private static JNBranchProvider instance;
- public static JNBranchProvider Instance
- {
- get
- {
- CreateInstance(ref instance);
- return instance;
- }
- }
- public JNBranchProvider() : base(County.JN)
- {
- }
- }
- }
|