ATMLDataAccessLibrary.db.daos.LookupTablesDAO.getDocumentTypes C# (CSharp) Method

getDocumentTypes() public method

public getDocumentTypes ( ) : List
return List
        public List<DocumentType> getDocumentTypes()
        {
            var parameters = new OleDbParameter[] {};
            return
                CreateList<DocumentType>(
                    BuildSqlSelect(DocumentType._TABLE_NAME, new String[] { ALL }, new String[] { }), parameters);
        }