Repository Pattern
Learn and practice a Repository pattern in this lesson.
We'll cover the following...
Overview of Repository Pattern
The Repository pattern helps us to abstract away the way we retrieve the data. The Repository provides a clean API so that the rest of the app can retrieve data easily.
Before implementing the Repository pattern, let’s re-factor the BlogHttpClient
. Since we are not going to use the BlogHttpClient
...