1The Magic of Mocks
The greatest benefit of the Service layer is testing. Because the Service doesn't rely on 'req' or 'res', you can test it easily using Jest. You simply pass in a mocked JSON object, mock the Database Model, and verify that the Service logic works instantly without ever spinning up a real HTTP server.
