Exemplo n.º 1
0
        private void BuilderManager()
        {
            this.codeEditorManager.Text = string.Empty;
            var codeMaker = new DBCodeMaker(idbObj, this.DBName, this.TableName, this.Compay, this.Project, this.Author, this.GetClassName, "Manager", this.TableName, this.TableDescription);

            this.codeEditorManager.SetCodeEditorContent("CS", codeMaker.BuilderManager());
            this.codeEditorManager.SaveFileName = this.TableName + "Manager.Auto";
        }
Exemplo n.º 2
0
        private void BuilderManager(string outPutFile, string tabName)
        {
            DBCodeMaker codeMaker = new DBCodeMaker(dbobj, this.dbname, tabName, this.CompanyName, this.Project, this.Author, this.ClassName, "Manager", tabName, string.Empty);

            codeMaker.BuilderManager(outPutFile, true);
        }