public static void ConfigureContext() { Database.SetInitializer(new BurseDbInitializer()); using (var d = new BurseContext()) { d.Database.Initialize(false); } }
public ToolManager(BurseContext dbcContext) { db = dbcContext; }
public TransactionManager(BurseContext dbContext) { db = dbContext; }
public PersonManager(BurseContext dbContext) { db = dbContext; }
public ContextManager(BurseContext dbContext) { db = dbContext; }