The files in this folder access the database and API's in a standard manner.
- This is the only place in the project where query's are written and use.
- No app logic should be used here.
- Only
app.config
andapp.database
should be imported in theses files. - These files should only be consumed in the models files.
The files here should be names after tables, collections or API's.
The files in this folder are for the app logic of this project.
- Any Data access layer file can be used.
- Other Models should not be imported here.
- No direct Data Base or API access should take place here, thats for the Data access layer.
- The files here will be consummed by the controller.
The files here should be named nouns of things in your prject.
This file ties in models to give complete features.
- Do not access Data access level files here.
- Do not import other controllers.
- Import as many models as you need.
The files in this folder should be named for fetures and parts of your project.