Here's what this chunk of code does: Pulls back the 6 most recent members and displays a gallery on the home page -- photo, age and location.
My struggle here is whether I should be referencing anything in the SP/DAL method that says "gallery". The data layer only cares about the data, it shouldn't even know a gallery exists.
So my instinct is telling me to call the SP and DAL method something like: GetNewMembers and then call the BLL method: GetNewMemberGallery().
How would you go about naming these?