MVC Repository Pattern - Accessing other Repositories

Viewed 948

I have one repository that internally (on some methods) will need to use another repository.

I am trying to put all dependencies on the constructor, passing interfaces as arguments. However I don't know how to deal with this specific scenario.

Should I pass also this repository as an argument? Even though I will not use it on every method inside?

Thanks

2 Answers
Related