In this chapter, we will take our first step into organizing our project into separate layers. We will add class libraries, move some code around, populate our database, and have a working endpoint at the end.
A class library is a collection of reusable code that can be used by multiple applications. It consists of a set of classes, interfaces, and other types that define common functionality that can be used across different projects. Its purpose is to be used by other projects, and it can’t function as ...