Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sedadiriker/meetmanagersystem


https://github.com/sedadiriker/meetmanagersystem

asp-net-mvc email-service jwt-authentication mssql netcore8 passwordhashing swagger

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

        

# Meet-Manager-System

ProjectRoot/

├── ApiLayer/ # API controllers and services
│ ├── Controllers/
│ ├── Program.cs
│ ├── Startup.cs
│ └── appsettings.json

├── BusinessLayer/ # Business logic services
│ └── Services/
│ └── UserService.cs

├── DataAccessLayer/ # Entity Framework DbContext and migrations
│ ├── Migrations/
│ ├── ApplicationDbContext.cs
│ └── IRepository.cs

├── EntitiesLayer/ # Database and business model classes
│ ├── User.cs
│ └── Meeting.cs

├── PresentationLayer/ # UI components (Angular or MVC)
│ ├── Angular/ # Angular project files
│ └── MVC/ # MVC project files
│ ├── Controllers/
│ ├── Views/
│ └── wwwroot/

├── docker/ # Docker-related files
│ ├── Dockerfile
│ └── docker-compose.yml

├── .gitignore # Git ignore settings
└── README.md # Project documentation