Exemple #1
0
        private void BuilderEntity()
        {
            var codeMaker = new DBCodeMaker(idbObj, this.DBName, this.TableName, this.Compay, this.Project, this.Author, this.GetClassName, "Entity", this.TableName, this.TableDescription);

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

            codeMaker.BuilderEntity(outPutFile, true);
        }