├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Readme.md ├── SmartSchool.WebAPI ├── Data │ ├── IRepository.cs │ ├── Repository.cs │ └── SmartContext.cs ├── Dockerfile ├── Helpers │ ├── DateTimeExtensions.cs │ ├── Extensions.cs │ ├── PageList.cs │ ├── PageParams.cs │ └── PaginationHeader.cs ├── Migrations │ ├── 20201005185632_initMySql.Designer.cs │ ├── 20201005185632_initMySql.cs │ └── SmartContextModelSnapshot.cs ├── Models │ ├── Aluno.cs │ ├── AlunoCurso.cs │ ├── AlunoDisciplina.cs │ ├── Curso.cs │ ├── Disciplina.cs │ └── Professor.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SmartSchool.WebAPI.csproj ├── SmartSchool.WebAPI.xml ├── SmartSchool.db ├── Startup.cs ├── V1 │ ├── Controllers │ │ ├── AlunoController.cs │ │ └── ProfessorController.cs │ ├── Dtos │ │ ├── AlunoDto.cs │ │ ├── AlunoPatchDto.cs │ │ ├── AlunoRegistrarDto.cs │ │ ├── CursoDto.cs │ │ ├── DisciplinaDto.cs │ │ ├── ProfessorDto.cs │ │ ├── ProfessorRegistrarDto.cs │ │ └── TrocaEstadoDto.cs │ └── Profiles │ │ └── SmartSchoolProfile.cs ├── V2 │ ├── Controllers │ │ └── AlunoController.cs │ ├── Dtos │ │ ├── AlunoDto.cs │ │ └── AlunoRegistrarDto.cs │ └── Profiles │ │ └── SmartSchoolProfile.cs ├── appsettings.Development.json ├── appsettings.json └── docker-compose.yml ├── SmartSchool.sln └── SmartSchoolApp ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── alunos │ │ │ ├── alunos.component.css │ │ │ ├── alunos.component.html │ │ │ ├── alunos.component.spec.ts │ │ │ ├── alunos.component.ts │ │ │ └── professores-alunos │ │ │ │ ├── professores-alunos.component.css │ │ │ │ ├── professores-alunos.component.html │ │ │ │ ├── professores-alunos.component.spec.ts │ │ │ │ └── professores-alunos.component.ts │ │ ├── dashboard │ │ │ ├── dashboard.component.css │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.spec.ts │ │ │ └── dashboard.component.ts │ │ ├── perfil │ │ │ ├── perfil.component.css │ │ │ ├── perfil.component.html │ │ │ ├── perfil.component.spec.ts │ │ │ └── perfil.component.ts │ │ ├── professores │ │ │ ├── alunos-professores │ │ │ │ ├── alunos-professores.component.css │ │ │ │ ├── alunos-professores.component.html │ │ │ │ ├── alunos-professores.component.spec.ts │ │ │ │ └── alunos-professores.component.ts │ │ │ ├── professor-detalhe │ │ │ │ ├── professor-detalhe.component.css │ │ │ │ ├── professor-detalhe.component.html │ │ │ │ ├── professor-detalhe.component.spec.ts │ │ │ │ └── professor-detalhe.component.ts │ │ │ ├── professores.component.css │ │ │ ├── professores.component.html │ │ │ ├── professores.component.spec.ts │ │ │ └── professores.component.ts │ │ └── shared │ │ │ ├── nav │ │ │ ├── nav.component.css │ │ │ ├── nav.component.html │ │ │ ├── nav.component.spec.ts │ │ │ └── nav.component.ts │ │ │ └── titulo │ │ │ ├── titulo.component.css │ │ │ ├── titulo.component.html │ │ │ ├── titulo.component.spec.ts │ │ │ └── titulo.component.ts │ ├── models │ │ ├── Aluno.ts │ │ ├── Disciplina.ts │ │ ├── Pagination.ts │ │ └── Professor.ts │ ├── services │ │ ├── aluno.service.spec.ts │ │ ├── aluno.service.ts │ │ ├── professor.service.spec.ts │ │ └── professor.service.ts │ └── util │ │ └── util.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/Readme.md -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Data/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Data/IRepository.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Data/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Data/Repository.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Data/SmartContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Data/SmartContext.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Dockerfile -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Helpers/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Helpers/DateTimeExtensions.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Helpers/Extensions.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Helpers/PageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Helpers/PageList.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Helpers/PageParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Helpers/PageParams.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Helpers/PaginationHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Helpers/PaginationHeader.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Migrations/20201005185632_initMySql.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Migrations/20201005185632_initMySql.Designer.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Migrations/20201005185632_initMySql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Migrations/20201005185632_initMySql.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Migrations/SmartContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Migrations/SmartContextModelSnapshot.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Models/Aluno.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Models/Aluno.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Models/AlunoCurso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Models/AlunoCurso.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Models/AlunoDisciplina.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Models/AlunoDisciplina.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Models/Curso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Models/Curso.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Models/Disciplina.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Models/Disciplina.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Models/Professor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Models/Professor.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Program.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /SmartSchool.WebAPI/SmartSchool.WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/SmartSchool.WebAPI.csproj -------------------------------------------------------------------------------- /SmartSchool.WebAPI/SmartSchool.WebAPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/SmartSchool.WebAPI.xml -------------------------------------------------------------------------------- /SmartSchool.WebAPI/SmartSchool.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/SmartSchool.db -------------------------------------------------------------------------------- /SmartSchool.WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/Startup.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Controllers/AlunoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Controllers/AlunoController.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Controllers/ProfessorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Controllers/ProfessorController.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/AlunoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/AlunoDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/AlunoPatchDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/AlunoPatchDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/AlunoRegistrarDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/AlunoRegistrarDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/CursoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/CursoDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/DisciplinaDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/DisciplinaDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/ProfessorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/ProfessorDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/ProfessorRegistrarDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/ProfessorRegistrarDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Dtos/TrocaEstadoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Dtos/TrocaEstadoDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V1/Profiles/SmartSchoolProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V1/Profiles/SmartSchoolProfile.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V2/Controllers/AlunoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V2/Controllers/AlunoController.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V2/Dtos/AlunoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V2/Dtos/AlunoDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V2/Dtos/AlunoRegistrarDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V2/Dtos/AlunoRegistrarDto.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/V2/Profiles/SmartSchoolProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/V2/Profiles/SmartSchoolProfile.cs -------------------------------------------------------------------------------- /SmartSchool.WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /SmartSchool.WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/appsettings.json -------------------------------------------------------------------------------- /SmartSchool.WebAPI/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.WebAPI/docker-compose.yml -------------------------------------------------------------------------------- /SmartSchool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchool.sln -------------------------------------------------------------------------------- /SmartSchoolApp/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/.browserslistrc -------------------------------------------------------------------------------- /SmartSchoolApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/.editorconfig -------------------------------------------------------------------------------- /SmartSchoolApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/.gitignore -------------------------------------------------------------------------------- /SmartSchoolApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/README.md -------------------------------------------------------------------------------- /SmartSchoolApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/angular.json -------------------------------------------------------------------------------- /SmartSchoolApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /SmartSchoolApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /SmartSchoolApp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/e2e/tsconfig.json -------------------------------------------------------------------------------- /SmartSchoolApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/karma.conf.js -------------------------------------------------------------------------------- /SmartSchoolApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/package-lock.json -------------------------------------------------------------------------------- /SmartSchoolApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/package.json -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/app.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/app.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/app.module.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/alunos.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/alunos.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/alunos/alunos.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/alunos.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/alunos/alunos.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/alunos.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/alunos/alunos.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/professores-alunos/professores-alunos.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/professores-alunos/professores-alunos.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/alunos/professores-alunos/professores-alunos.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/professores-alunos/professores-alunos.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/alunos/professores-alunos/professores-alunos.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/alunos/professores-alunos/professores-alunos.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/alunos/professores-alunos/professores-alunos.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/perfil/perfil.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/perfil/perfil.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/perfil/perfil.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/perfil/perfil.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/perfil/perfil.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/perfil/perfil.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/perfil/perfil.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/alunos-professores/alunos-professores.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/alunos-professores/alunos-professores.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/alunos-professores/alunos-professores.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/alunos-professores/alunos-professores.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/alunos-professores/alunos-professores.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/alunos-professores/alunos-professores.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/alunos-professores/alunos-professores.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professor-detalhe/professor-detalhe.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professor-detalhe/professor-detalhe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/professor-detalhe/professor-detalhe.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professor-detalhe/professor-detalhe.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/professor-detalhe/professor-detalhe.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professor-detalhe/professor-detalhe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/professor-detalhe/professor-detalhe.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professores.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professores.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/professores.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professores.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/professores.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/professores/professores.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/professores/professores.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/nav/nav.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/nav/nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/shared/nav/nav.component.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/nav/nav.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/shared/nav/nav.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/nav/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/shared/nav/nav.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/titulo/titulo.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/titulo/titulo.component.html: -------------------------------------------------------------------------------- 1 |

2 | {{titulo}} 3 |

4 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/titulo/titulo.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/shared/titulo/titulo.component.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/components/shared/titulo/titulo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/components/shared/titulo/titulo.component.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/models/Aluno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/models/Aluno.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/models/Disciplina.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/models/Disciplina.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/models/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/models/Pagination.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/models/Professor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/models/Professor.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/services/aluno.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/services/aluno.service.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/services/aluno.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/services/aluno.service.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/services/professor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/services/professor.service.spec.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/services/professor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/services/professor.service.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/app/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/app/util/util.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartSchoolApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/environments/environment.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/favicon.ico -------------------------------------------------------------------------------- /SmartSchoolApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/index.html -------------------------------------------------------------------------------- /SmartSchoolApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/main.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/polyfills.ts -------------------------------------------------------------------------------- /SmartSchoolApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/styles.css -------------------------------------------------------------------------------- /SmartSchoolApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/src/test.ts -------------------------------------------------------------------------------- /SmartSchoolApp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/tsconfig.app.json -------------------------------------------------------------------------------- /SmartSchoolApp/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/tsconfig.base.json -------------------------------------------------------------------------------- /SmartSchoolApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/tsconfig.json -------------------------------------------------------------------------------- /SmartSchoolApp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/tsconfig.spec.json -------------------------------------------------------------------------------- /SmartSchoolApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsandrade/AspNetCoreWebAPI/HEAD/SmartSchoolApp/tslint.json --------------------------------------------------------------------------------