public string GenerateBaseBusinessDataCodeClassName(IView view)
 {
     return(string.Format(this.BussinessBaseCodeNameFormat,
                          ViewGenerationHelper.GenerateNameByView(view, this.BussinessCodeClassNameFormat,
                                                                  StringCase.PascalCase,
                                                                  this.DbPrefix)));
 }
 public string GenerateDataCodeClassName(IView view)
 {
     return(ViewGenerationHelper.GenerateNameByView(view, this.DataCodeClassNameFormat, StringCase.PascalCase,
                                                    this.DbPrefix));
 }
 public string GenerateServiceProxyInterfaceClassName(IView table)
 {
     return(ViewGenerationHelper.GenerateNameByView(table, this.ServiceProxyInterfacesNameFormat, StringCase.PascalCase,
                                                    this.DbPrefix));
 }
 public string GenerateBussinessEncapsulationClassName(IView table)
 {
     return(ViewGenerationHelper.GenerateNameByView(table, this.GenerateBussinessEncapsulationClassNameFormat, StringCase.PascalCase,
                                                    this.DbPrefix));
 }
 public string GenerateDataObjectClassName(IView table)
 {
     return(ViewGenerationHelper.GenerateNameByView(table, this.DataObjectClassNameFormat, StringCase.PascalCase,
                                                    this.DbPrefix));
 }
 public string GenerateCollectionClassName(IView table)
 {
     return(ViewGenerationHelper.GenerateNameByView(table, this.EntityCollectionClassNameFormat, StringCase.PascalCase,
                                                    this.DbPrefix));
 }
 public string GenerateMappingFileName(IView table)
 {
     return(ViewGenerationHelper.GenerateNameByView(table, _EntityMappingfileClassNameFormat, StringCase.PascalCase,
                                                    this.DbPrefix));
 }