There are many ways to get there:
CurrentDocument.Children.Where(x => x.ClassName == "cms.CaseStudyQuotes")
or
DocumentHelper.GetDocuments("cms.CaseStudyQuotes")
.WhereEquals("NodeParentID", CurrentDocument.NodeID);
Second options gives you a possibility to filter out not published pages, or check security and many more.