Skip to content

Instantly share code, notes, and snippets.

@rusith
Last active February 3, 2018 11:43
Show Gist options
  • Save rusith/51d157d59ab1e3a954ff03cccd7e3ea0 to your computer and use it in GitHub Desktop.
Save rusith/51d157d59ab1e3a954ff03cccd7e3ea0 to your computer and use it in GitHub Desktop.
Genie Blog Post - Project Directory Structure
├── BestAppEver
│   ├── Modules
├── BestAppEver.API
│   ├── Controllers
├── BestAppEver.BL
│   ├── Services
├── BestAppEver.DAL
│   ├── Modules
│   └── Providers
└── BestAppEver.UnitTests
├── Providers
├── 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