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
- Host: GitHub
- URL: https://github.com/youstinus/mvc-creator
- Owner: youstinus
- License: mit
- Created: 2019-04-23T19:52:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-23T20:19:00.000Z (over 6 years ago)
- Last Synced: 2025-01-29T13:27:27.548Z (8 months ago)
- Topics: csharp, dotnet, dotnet-core, dotnet-framework, mvc, mvc-generator
- Language: C#
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
│
└── ...