You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
707 B
35 lines
707 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using IBatisNet.DataMapper;
|
|
using System.Collections;
|
|
using System.Data;
|
|
using IBatisNet.DataMapper.Configuration;
|
|
|
|
namespace SiaSun.LMS.Persistence
|
|
{
|
|
public class P_Base_ERP : P_Base
|
|
{
|
|
public static volatile ISqlMapper _sqlMap;
|
|
|
|
|
|
public P_Base_ERP()
|
|
{
|
|
if (_sqlMap == null)
|
|
{
|
|
if (_sqlMap == null)
|
|
{
|
|
DomSqlMapBuilder builder = new DomSqlMapBuilder();
|
|
_sqlMap = builder.Configure("ERPMap.config");
|
|
}
|
|
}
|
|
|
|
base._sqlMap = _sqlMap;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|