Skip to content

WanjohiSammy/Ep.4.a-Car-Rental-API

Repository files navigation

Ep.4(a): Car Rental System API - Project Preparation for User Register and Login Enpoints

This Project follows a layered architecture, which is a good practice for building scalable and maintainable applications. Each layer has its specific responsibilities, making the codebase modular and easy to understand. This clean separation of concerns keeps things organized and manageable, making maintenance and testing easy.

Additional Codes or Features

  1. Nuget packages installation
  • Microsoft.AspNetCore.Identity.EntityFrameworkCore: Installed in Domain project
  • Microsoft.EntityFrameworkCore: Added in Data Layer
  • Microsoft.EntityFrameworkCore.SqlServer: Installed in Data Layer
  • Microsoft.EntityFrameworkCore.Tools: Installed in Data Layer
  1. ApplicationUser and ApplicationRole Creation
  • Utilizing ASP.NET Core Identity framework.
  • ApplicationUser inherits IdentityUser with Guid as its primary key type.
  • ApplicationRole inherits IdentityRole with Guid as its primary key type.
  1. CarRentalDbContext Creation
  • Development of CarRentalDbContext.
  • This DbContext inherits IdentityDbContext<ApplicationUser, ApplicationRole, Guid> rather than normal DbContext.
  1. Dependency Injection Setup
  • Registration of IdentityUser and IdentityRole.
  • Addition of CarRentalDbContext to the service collection with SQL Server provider specification.
  • Integration of Data Layer services into the global DI configurations, facilitating easy access to essential application services throughout the codebase.
  1. Migration Execution
  • Generation of migrations.
  • Guidelines on renaming tables.
  • Creation of Identity tables using generated migrations.
  1. Seeding Implementation
  • Initialization of default roles.
  • Customizable seeding process
  1. Utilizing Extensions in C#
  • In-depth exploration of extension methods, showcasing their versatility in enhancing existing types and functionality in C#.
  • Practical examples illustrating various scenarios where extension methods can be applied, empowering developers to leverage C# language features effectively.

Get Started

  1. Clone the repo
git clone https://github.com/WanjohiSammy/Ep.3-Car-Rental-API.git
  1. Add appsettings.Development.json file in CarRental.Api layer:
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "ConnectionStrings": {
    "DefaultConnection": "Data Source=(localdb)\\MSSQLLocalDB;Initial Catalog=CarRentalStore;Integrated Security=True;Connect Timeout=30;Encrypt=True;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False"
  }
}
  1. Build the project to restore packages and ensure it follows the Project Structure.

Layers Overview

Project follows a Layered Architecture, which is a good practice for building scalable and maintainable applications. Each layer has its specific responsibilities. This structure promotes separation of concerns, making it easier to maintain and test each layer independently.

Project-Structure-Diagram

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages