December 2019
Intermediate to advanced
510 pages
11h 33m
English
Once we have defined the IItemRepository interfaces and all the abstractions in the domain project, we should continue by creating the classes that will represent the concrete implementation of the previously defined abstractions. We will also create a new Catalog.Infrastructure project containing all the implementations of our repositories and the classes that represent the layer between our service and the database. Let's create the Catalog.Infrastructure project by executing the following commands in the src folder:
dotnet new classlib -n Catalog.Infrastructure -f netstandard2.1dotnet sln ../Catalog.API.sln add Catalog.Infrastructure
Once finished, the folder structure for our solution looks as ...
Read now
Unlock full access