ouzdev / Rent-A-Car-App-Frontend-Project

Angular & DevExtreme ⚑ frontend project of an open source car rental application πŸš€

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Angular + DevExpress Rent a Car App

Project Tree Structure

πŸ“¦ Recap_AngularUI
β”œβ”€ src
β”‚  β”œβ”€ app
β”‚  β”‚  β”œβ”€ app-routing.module.ts
β”‚  β”‚  β”œβ”€ app.component.css
β”‚  β”‚  β”œβ”€ app.component.html
β”‚  β”‚  β”œβ”€ app.component.spec.ts
β”‚  β”‚  β”œβ”€ app.component.ts
β”‚  β”‚  β”œβ”€ app.module.ts
β”‚  β”‚  β”œβ”€ components
β”‚  β”‚  β”‚  β”œβ”€ brand
β”‚  β”‚  β”‚  β”‚  β”œβ”€ brand.component.css
β”‚  β”‚  β”‚  β”‚  β”œβ”€ brand.component.html
β”‚  β”‚  β”‚  β”‚  β””─ brand.component.ts
β”‚  β”‚  β”‚  β”œβ”€ car
β”‚  β”‚  β”‚  β”‚  β”œβ”€ car.component.css
β”‚  β”‚  β”‚  β”‚  β”œβ”€ car.component.html
β”‚  β”‚  β”‚  β”‚  β””─ car.component.ts
β”‚  β”‚  β”‚  β”œβ”€ color
β”‚  β”‚  β”‚  β”‚  β”œβ”€ color.component.css
β”‚  β”‚  β”‚  β”‚  β”œβ”€ color.component.html
β”‚  β”‚  β”‚  β”‚  β””─ color.component.ts
β”‚  β”‚  β”‚  β”œβ”€ customer
β”‚  β”‚  β”‚  β”‚  β”œβ”€ customer.component.css
β”‚  β”‚  β”‚  β”‚  β”œβ”€ customer.component.html
β”‚  β”‚  β”‚  β”‚  β””─ customer.component.ts
β”‚  β”‚  β”‚  β”œβ”€ navbar
β”‚  β”‚  β”‚  β”‚  β”œβ”€ navbar.component.css
β”‚  β”‚  β”‚  β”‚  β”œβ”€ navbar.component.html
β”‚  β”‚  β”‚  β”‚  β””─ navbar.component.ts
β”‚  β”‚  β”‚  β””─ rental
β”‚  β”‚  β”‚     β”œβ”€ rental.component.css
β”‚  β”‚  β”‚     β”œβ”€ rental.component.html
β”‚  β”‚  β”‚     β””─ rental.component.ts
β”‚  β”‚  β”œβ”€ model
β”‚  β”‚  β”‚  β”œβ”€ brand
β”‚  β”‚  β”‚  β”‚  β”œβ”€ addBrandDto.ts
β”‚  β”‚  β”‚  β”‚  β”œβ”€ brand.ts
β”‚  β”‚  β”‚  β”‚  β””─ brandResponseModel.ts
β”‚  β”‚  β”‚  β”œβ”€ car
β”‚  β”‚  β”‚  β”‚  β”œβ”€ car.ts
β”‚  β”‚  β”‚  β”‚  β”œβ”€ carResponseModel.ts
β”‚  β”‚  β”‚  β”‚  β””─ cardetails.ts
β”‚  β”‚  β”‚  β”œβ”€ carImage
β”‚  β”‚  β”‚  β”‚  β”œβ”€ carImage.ts
β”‚  β”‚  β”‚  β”‚  β””─ carImageResponseModel.ts
β”‚  β”‚  β”‚  β”œβ”€ color
β”‚  β”‚  β”‚  β”‚  β”œβ”€ color.ts
β”‚  β”‚  β”‚  β”‚  β””─ colorResponseModel.ts
β”‚  β”‚  β”‚  β”œβ”€ customer
β”‚  β”‚  β”‚  β”‚  β”œβ”€ customer.ts
β”‚  β”‚  β”‚  β”‚  β””─ customerResponseModel.ts
β”‚  β”‚  β”‚  β”œβ”€ rental
β”‚  β”‚  β”‚  β”‚  β”œβ”€ rental.ts
β”‚  β”‚  β”‚  β”‚  β””─ rentalResponseModel.ts
β”‚  β”‚  β”‚  β”œβ”€ rentalDetail
β”‚  β”‚  β”‚  β”‚  β”œβ”€ rentalDetailDto.ts
β”‚  β”‚  β”‚  β”‚  β””─ rentalDetailResponseModel.ts
β”‚  β”‚  β”‚  β””─ responseModel.ts
β”‚  β”‚  β””─ services
β”‚  β”‚     β”œβ”€ brand
β”‚  β”‚     β”‚  β””─ brand.service.ts
β”‚  β”‚     β”œβ”€ car
β”‚  β”‚     β”‚  β””─ car.service.ts
β”‚  β”‚     β”œβ”€ carImage
β”‚  β”‚     β”‚  β””─ car-image.service.ts
β”‚  β”‚     β”œβ”€ color
β”‚  β”‚     β”‚  β””─ color.service.ts
β”‚  β”‚     β”œβ”€ customer
β”‚  β”‚     β”‚  β””─ customer.service.ts
β”‚  β”‚     β””─ rental
β”‚  β”‚        β””─ rental.service.ts
β”‚  β”œβ”€ assets
β”‚  β”‚  β”œβ”€ .gitkeep
β”‚  β”‚  β””─ bootstrap-solid.svg
β”‚  β”œβ”€ environments
β”‚  β”‚  β”œβ”€ environment.prod.ts
β”‚  β”‚  β””─ environment.ts
β”‚  β”œβ”€ favicon.ico
β”‚  β”œβ”€ index.html
β”‚  β”œβ”€ main.ts
β”‚  β”œβ”€ polyfills.ts
β”‚  β”œβ”€ styles.css
β”‚  β””─ test.ts
β”œβ”€ tsconfig.app.json
β”œβ”€ tsconfig.json
β”œβ”€ tsconfig.spec.json
└─ tslint.json

About

Angular & DevExtreme ⚑ frontend project of an open source car rental application πŸš€


Languages

Language:TypeScript 62.7%Language:HTML 30.0%Language:JavaScript 6.4%Language:CSS 0.8%