Last active
February 3, 2018 11:43
-
-
Save rusith/51d157d59ab1e3a954ff03cccd7e3ea0 to your computer and use it in GitHub Desktop.
Genie Blog Post - Project Directory Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ├── BestAppEver | |
| │ ├── Modules | |
| ├── BestAppEver.API | |
| │ ├── Controllers | |
| ├── BestAppEver.BL | |
| │ ├── Services | |
| ├── BestAppEver.DAL | |
| │ ├── Modules | |
| │ └── Providers | |
| └── BestAppEver.UnitTests | |
| ├── Providers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ├── bin | |
| │ └── Debug | |
| │ └── netstandard2.0 | |
| ├── Dapper | |
| ├── Infrastructure | |
| │ ├── Actions | |
| │ │ ├── Abstract | |
| │ │ └── Concrete | |
| │ ├── Collections | |
| │ │ ├── Abstract | |
| │ │ └── Concrete | |
| │ ├── Enum | |
| │ ├── Filters | |
| │ │ ├── Abstract | |
| │ │ └── Concrete | |
| │ ├── Interfaces | |
| │ ├── Models | |
| │ │ ├── Abstract | |
| │ │ │ └── Context | |
| │ │ └── Concrete | |
| │ │ └── Context | |
| │ └── Repositories | |
| ├── Modules | |
| ├── obj | |
| │ └── Debug | |
| │ └── netstandard2.0 | |
| └── Providers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment