Exemplo n.º 1
0
 public frmMain(int type)
 {
     InitializeComponent();
     this.type  = type;
     this.hiBll = new HallInfoBLL();
     this.tiBll = new TableInfoBLL();
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            string[] listTable = { "Answer" };

            foreach (string table in listTable)
            {
                TableInfoBLL tableInfo = new TableInfoBLL(table);
                tableInfo.CreationDesFichier(table);
            }
        }
Exemplo n.º 3
0
 private frmTableInfo()
 {
     InitializeComponent();
     this.tiBll = new TableInfoBLL();
     this.hiBll = new HallInfoBLL();
 }