An open API service indexing awesome lists of open source software.

https://github.com/youstinus/mvc-creator

MVC folder structure creator for .NET Core and Framework applications
https://github.com/youstinus/mvc-creator

csharp dotnet dotnet-core dotnet-framework mvc mvc-generator

Last synced: 7 months ago
JSON representation

MVC folder structure creator for .NET Core and Framework applications

Awesome Lists containing this project

README

          

### MVC creator for .NET Core and .NET Framework applications
### How to use?
Create new project
Copy MVCreator.exe into project's folder
Open CMD inside project's location
Type `MVCreator.exe` followed by arguments separated by space
Arguments case sensitive and must represent objects
Type `MVCreator.exe` for help
Example `MVCreator.exe Customer Restaurant Product Table Waiter`

### It will create folder structure with files:
.
├── ...

├── Base
│ ├── BaseController.cs
│ ├── BaseDto.cs
│ ├── BaseEntity.cs
│ ├── BaseRepository.cs
│ ├── BaseService.cs
│ └── Interfaces
│ ├── IBaseController.cs
│ ├── IBaseDto.cs
│ ├── IBaseEntity.cs
│ ├── IBaseRepository.cs
│ └── IBaseService.cs

├── Controllers
│ └── Interfaces

├── Models
│ └── Dto

├── Repositories
│ └── Interfaces

├── Services
│ └── Interfaces

└── ...