public static string GetModelClass(string TabName, DbSettings dbset) { return(dbset.ModelPrefix + NameRule.TabNameRuled(TabName, dbset) + dbset.ModelSuffix); }
public static string GetDALClass(string TabName, DbSettings dbset) { return(dbset.DALPrefix + NameRule.TabNameRuled(TabName, dbset) + dbset.DALSuffix); }