public DocumentTypeLibraryBean FindTypeByID(int id)
{
string sql = builSelectSQLStatement(DocumentTypeLibraryBean._TABLE_NAME,
new[] { BASEBean._ALL },
new[] { DocumentTypeLibraryBean._ID });
OleDbParameter[] parameters = { new OleDbParameter(DocumentTypeLibraryBean._ID, id) };
return CreateBean<DocumentTypeLibraryBean>(sql, parameters);
}