ATMLDataAccessLibrary.db.daos.DocumentTypeLibraryDAO.FindTypeByASCII C# (CSharp) Метод

FindTypeByASCII() публичный Метод

public FindTypeByASCII ( string ascii ) : DocumentTypeLibraryBean
ascii string
Результат ATMLDataAccessLibrary.db.beans.DocumentTypeLibraryBean
        public DocumentTypeLibraryBean FindTypeByASCII(string ascii)
        {
            string sql = builSelectSQLStatement(DocumentTypeLibraryBean._TABLE_NAME,
                                                new[] { BASEBean._ALL },
                                                new[] { DocumentTypeLibraryBean._ASCII });
            OleDbParameter[] parameters = { new OleDbParameter(DocumentTypeLibraryBean._ASCII, ascii) };
            return CreateBean<DocumentTypeLibraryBean>(sql, parameters);
        }