def list_all(self): """Get all records from the database""" query = text(""" SELECT id, name FROM tblIngredient; """) return self.fetchall(query)