Brep face list

Thank you very much Dale,
I just resolve the problem.
to get the faces of the Brep I did this:
List fcLst = new List();
foreach (BrepFace s in bowl.Faces)
{
Brep faceBr = s.DuplicateFace(true);
fcLst.Add(faceBr);
}