Chapter 10, Consuming REST Services
- A DTO is responsible for holding data that will be sent to and/or from the API.
- The database is now in the cloud and managed through the API. As the client, we don’t know, nor need to know, what kind of database is in use.
- It wraps all the API calls so that a client can interact with the API as if it were a Plain Old CLR Object (POCO).
- Account creation is accomplished in the cloud via the API.
- Authentication is accomplished in the cloud via the API.