using Longbow.Data;
using System;
namespace Bootstrap.DataAccess
{
///
///
///
public static class DBAccessManager
{
private static Lazy db = new Lazy(() => DBAccess.CreateDB("SQL"), true);
public static DBAccess SqlDBAccess
{
get { return db.Value; }
}
}
}