This document is for E-Commerce for EForT-Ver1.

This code has been created in collaboration with other EFORT teams.

The structure of this folder is that of a regular Visual Studio .NET Core project. There are a couple components that are of interest, which will be explained next.

Business - Contains the services that call for data to the Database via a Web API.
DataAccess - Contains an ADO.NET project that requests data from the database via stored procedures
EForT - Contains the main MVC code (the web code itself)
Entities - Contains objects used to pass data around in a standard format
WebAPI - Contains the Web API that exposes the DataAccess layer

EForT is the main project, which uses Business to request data. Business requests the WebAPI for data, which in turn asks for DataAccess to go to the database. This project uses stored procedures saved on a separate project (see Database code) to access the data.

