├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.ts │ ├── app.routes.ts │ ├── pages │ │ ├── employee-form │ │ │ ├── employee-form.component.html │ │ │ ├── employee-form.component.scss │ │ │ ├── employee-form.component.spec.ts │ │ │ └── employee-form.component.ts │ │ ├── employee │ │ │ ├── employee.component.html │ │ │ ├── employee.component.scss │ │ │ ├── employee.component.spec.ts │ │ │ └── employee.component.ts │ │ └── shared │ │ │ ├── models │ │ │ └── Employee.ts │ │ │ └── ui │ │ │ └── model │ │ │ ├── model.component.html │ │ │ ├── model.component.scss │ │ │ ├── model.component.spec.ts │ │ │ └── model.component.ts │ └── services │ │ ├── employee.service.spec.ts │ │ └── employee.service.ts ├── assets │ └── .gitkeep ├── favicon.ico ├── index.html ├── main.ts └── styles.scss ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/pages/employee-form/employee-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/employee-form/employee-form.component.html -------------------------------------------------------------------------------- /src/app/pages/employee-form/employee-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/employee-form/employee-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/employee-form/employee-form.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/employee-form/employee-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/employee-form/employee-form.component.ts -------------------------------------------------------------------------------- /src/app/pages/employee/employee.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/employee/employee.component.html -------------------------------------------------------------------------------- /src/app/pages/employee/employee.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/employee/employee.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/employee/employee.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/employee/employee.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/employee/employee.component.ts -------------------------------------------------------------------------------- /src/app/pages/shared/models/Employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/shared/models/Employee.ts -------------------------------------------------------------------------------- /src/app/pages/shared/ui/model/model.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/shared/ui/model/model.component.html -------------------------------------------------------------------------------- /src/app/pages/shared/ui/model/model.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/shared/ui/model/model.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/shared/ui/model/model.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/shared/ui/model/model.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/pages/shared/ui/model/model.component.ts -------------------------------------------------------------------------------- /src/app/services/employee.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/services/employee.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/employee.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/app/services/employee.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/src/styles.scss -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdcoders/ng17-crud-app/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------