/*
* Namespace Summary
* Copyright (C) 2005 Bogdan Damian Constantin
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License 2.1 or later, as
* published by the Free Software Foundation. See the included License.txt
* or http://www.gnu.org/copyleft/lesser.html for details.
*
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace GEGeneratorWizzard{
/// <summary>
/// Summary description for StarterClass.
/// </summary>
public class StarterClass
{
public StarterClass()
{
//
// TODO: Add constructor logic here
//
}
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
DataHolder.Containers.GenericData.InitCache(new DataHolder.Containers.Property.PropertyCollectionCache());
DataHolder.DataPersistence.DBAProvider.PersistenceManager.InitPersistenceManager(10);
Application.Run(new MainParent());
}
}
}
|