Example #1
0
        private void BuilderTable()
        {
            this.codeEditorStorageTable.Text = string.Empty;
            var codeMaker = new DBCodeMaker(idbObj, this.DBName, this.TableName, this.Compay, this.Project, this.Author, this.GetClassName, "Table", this.TableName, this.TableDescription);

            this.codeEditorStorageTable.SetCodeEditorContent("CS", codeMaker.BuilderTable());
            this.codeEditorStorageTable.SaveFileName = this.TableName + "Table";
        }
Example #2
0
        private void BuilderTable(string outPutFile, string tabName)
        {
            DBCodeMaker codeMaker = new DBCodeMaker(dbobj, this.dbname, tabName, this.CompanyName, this.Project, this.Author, this.ClassName, "Table", tabName, string.Empty);

            codeMaker.BuilderTable(outPutFile, true);
        }