Part IV: Connecting the dots with the Service Layer

Part IV: Connecting the dots with the Service Layer

public 4 min read
The service layer is where most of the business logic goes in. It acts as an aggregator of data by calling the required repo functions and adds additional logic which may be required to transform the data. In this post, we are going to implement the service layer
Part I: Defining User Flows

Part I: Defining User Flows

public 4 min read
The first step during application development is designing. We define flows to understand how data needs to be fetched and stored from the UI which, in turn, helps in database and service design. In this post, we are going to define a basic flow for our pet adoption store application.