IRepository
"Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects." Martin Fowler
But often logic spreads between Business Layer and IRepositorys..
For example IDoctorRepository - can contain method with some kind of things that may called "busines logic".
IDoctorRepository.GetDoctorsWithBlaBlaBla() - uses two o four another tables or maybe repositorys and contain complex condition for query.
So how can i fight with this spreading of logic between IRepository and business layer?