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?

link|improve this question

61% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.