{"id":20925025,"url":"https://github.com/akifzdemir/rentacarproject","last_synced_at":"2026-04-27T18:33:36.076Z","repository":{"id":45462015,"uuid":"513662994","full_name":"akifzdemir/RentACarProject","owner":"akifzdemir","description":"Rent A Car project C# Backend","archived":false,"fork":false,"pushed_at":"2022-10-28T18:18:53.000Z","size":4532,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-10T21:50:04.435Z","etag":null,"topics":["crud","csharp","dotnet","rentacar"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akifzdemir.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-13T20:31:37.000Z","updated_at":"2023-01-24T16:45:30.000Z","dependencies_parsed_at":"2023-01-20T16:01:22.928Z","dependency_job_id":null,"html_url":"https://github.com/akifzdemir/RentACarProject","commit_stats":null,"previous_names":["akifzdemir/rentacarproject"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/akifzdemir/RentACarProject","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akifzdemir%2FRentACarProject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akifzdemir%2FRentACarProject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akifzdemir%2FRentACarProject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akifzdemir%2FRentACarProject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akifzdemir","download_url":"https://codeload.github.com/akifzdemir/RentACarProject/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akifzdemir%2FRentACarProject/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32349676,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T17:12:42.749Z","status":"ssl_error","status_checked_at":"2026-04-27T17:12:41.658Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crud","csharp","dotnet","rentacar"],"created_at":"2024-11-18T20:28:47.032Z","updated_at":"2026-04-27T18:33:36.028Z","avatar_url":"https://github.com/akifzdemir.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cp align=\"center\"\u003e .Net backend Project \u003c/p\u003e\n**Frontend of this project : https://github.com/akifz21/rentACarReactFrontend**\n\n## Contents\n- [Getting Started](#getting-started)\n  * [Installation](#installation)\n  * [Usage](#usage)\n- [Tech Stack](#tech-stack)\n\n## Getting Started\n\n### Installation\n\n1. Clone the repo:\n\n   ```sh\n   git clone https://github.com/akifz21/RentACarProject.git\n   ```\n2. Open the `RentACar.sln` file with `Visual Studio`\n3. Open the `appsettings.json` file in the `WebApi` folder and enter your own database connection string\n4. Open `Package Manager Console - Default Project: DataAccess` and run the following commands for migrate database:\n\n   ```sh\n   update-database\n   ```\n   `NOTE:`\n   ```sh\n    Or Migrates automatically when you start the project\n   ```\n   \n5. Right click on the `WebAPI` project (layer) from the `Solution Explorer` and select `Set as Startup Project` \n6. Start the project with `WebApi` in Visual Studio. Web API is ready and running!\n8. `NOTE:` \n    Owner account of default products email=akif@ozdemir.com password=12345678\n\n### Usage\n \nAfter running the Web API, you can make HTTP requests like:\n   \n   ```sh\n   https://localhost:7012/api/`CONTROLLER_NAME`/`METHOD_NAME`\n   ```\n \n   `CONTROLLER_NAME` =\u003e Each .cs file located in the `WebAPI.Controllers` folder (For example CONTROLLER_NAME for `CarsController`: Cars )\n   \u003cbr\u003e\u003cbr\u003e\n   `METHOD_NAME` =\u003e All of the methods in each .cs file in the `WebAPI.Controllers` folder\n \n#### Sample HTTP GET requests:\n\n1. List all Products:\n   ```sh\n   https://localhost:7012/api/Cars/getall\n   ```\n2. List a brand by id:\n   ```sh\n   https://localhost:7012/api/brands/getbyid?id=3\n   ```\n3. List all Product colors:\n   ```sh\n   https://localhost:7012/api/colors/getall\n   ```\n\n## Tech Stack\n| Technology / Library | Version |\n| ------------- | ------------- |\n| .NET | 6.0 |\n| Autofac | 6.4.0 |\n| Autofac.Extensions.DependencyInjection | 8.0.0 |\n| Autofac.Extras.DynamicProxy | 6.0.1 |\n| FluentValidation | 11.1.0 |\n| Microsoft.AspNetCore.Authentication.JwtBearer | 6.0.7 |\n| Microsoft.AspNetCore.Http | 2.2.2 |\n| Microsoft.AspNetCore.Http.Abstractions | 2.2.0 |\n| Microsoft.AspNetCore.Features | 5.0.17 |\n| Microsoft.EntityFrameworkCore | 6.0.7 |\n| Microsoft.EntityFrameworkCore.Tools | 6.0.7 |\n| Microsoft.EntityFrameworkCore.Design | 6.0.7 |\n| Microsoft.EntityFrameworkCore.InMemory | 6.0.7 |\n| Microsoft.EntityFrameworkCore.SqlServer | 6.0.7 |\n| Microsoft.Extensions.Configuration | 6.0.1 |\n| Microsoft.Extensions.Configuration.Json | 6.0.1 |\n| Microsoft.Extensions.Configuration.Binder | 6.0.0 |\n| Microsoft.Extensions.DependencyInjection.Json | 6.0.0 |\n| Microsoft.IdentityModel.Tokens | 6.12.2 |\n| System.IdentityModel.Tokens.Jwt | 6.12.2 |\n| Swashbuckle.AspNetCore | 6.2.3 |\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakifzdemir%2Frentacarproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakifzdemir%2Frentacarproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakifzdemir%2Frentacarproject/lists"}