├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── db.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── core │ │ ├── core.service.spec.ts │ │ └── core.service.ts │ ├── emp-add-edit │ │ ├── emp-add-edit.component.html │ │ ├── emp-add-edit.component.scss │ │ ├── emp-add-edit.component.spec.ts │ │ └── emp-add-edit.component.ts │ └── services │ │ ├── employee.service.spec.ts │ │ └── employee.service.ts ├── assets │ └── .gitkeep ├── favicon.ico ├── index.html ├── main.ts └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/angular.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/core/core.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/core/core.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/core.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/core/core.service.ts -------------------------------------------------------------------------------- /src/app/emp-add-edit/emp-add-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/emp-add-edit/emp-add-edit.component.html -------------------------------------------------------------------------------- /src/app/emp-add-edit/emp-add-edit.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/emp-add-edit/emp-add-edit.component.scss -------------------------------------------------------------------------------- /src/app/emp-add-edit/emp-add-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/emp-add-edit/emp-add-edit.component.spec.ts -------------------------------------------------------------------------------- /src/app/emp-add-edit/emp-add-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/emp-add-edit/emp-add-edit.component.ts -------------------------------------------------------------------------------- /src/app/services/employee.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/services/employee.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/employee.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/app/services/employee.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/src/styles.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tariqu/angular-crud-app/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------