14 lines
219 B
C#
14 lines
219 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using DBFactory;
|
|
namespace SystemConfig
|
|
{
|
|
public static class CStaticClass
|
|
{
|
|
|
|
public static DBOperator dbo = new DBOperator();
|
|
|
|
}
|
|
}
|