-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(CC-119): change folders path in adapters
- Loading branch information
1 parent
c246ec0
commit 6096b58
Showing
99 changed files
with
207 additions
and
207 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
...rc/app/adapters/controllers/api.module.ts → ...e-rest-api/src/app/adapters/api.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
...controllers/routes/v1/appointment/create-appointment/nestjs-create-appointment.service.ts
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...controllers/routes/v1/appointment/delete-appointment/nestjs-delete-appointment.service.ts
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...controllers/routes/v1/appointment/update-appointment/nestjs-update-appointment.service.ts
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...pp/adapters/controllers/routes/v1/patient/update-patient/nestjs-update-patient.service.ts
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...trollers/routes/v1/psychologist/create-psychologist/nestjs-create-psychologist.service.ts
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...trollers/routes/v1/psychologist/delete-psychologist/nestjs-delete-psychologist.service.ts
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...trollers/routes/v1/psychologist/update-psychologist/nestjs-update-psychologist.service.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ointment/create-appointment.controller.ts → ...ointment/create-appointment.controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ppointment/create-appointment.e2e-spec.ts → ...ppointment/create-appointment.e2e-spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pointment/create-appointment/input.dto.ts → ...pointment/create-appointment/input.dto.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...pp/adapters/routes/v1/appointment/create-appointment/nestjs-create-appointment.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Injectable } from '@nestjs/common'; | ||
import { AppointmentDatabaseRepository } from '../../../../../core/domains/appointment/repositories/database-repository'; | ||
import { CreateSingleAppointmentService } from '../../../../../core/domains/appointment/use-cases/create-single-appointment/create-single-appointment.service'; | ||
|
||
@Injectable() | ||
export class NestjsCreateAppointmentService extends CreateSingleAppointmentService { | ||
constructor(appointmentDatabaseRepository: AppointmentDatabaseRepository) { | ||
super(appointmentDatabaseRepository); | ||
} | ||
} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ointment/delete-appointment.controller.ts → ...ointment/delete-appointment.controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ppointment/delete-appointment.e2e-spec.ts → ...ppointment/delete-appointment.e2e-spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
11 changes: 11 additions & 0 deletions
11
...pp/adapters/routes/v1/appointment/delete-appointment/nestjs-delete-appointment.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
import { Injectable } from '@nestjs/common'; | ||
import { AppointmentDatabaseRepository } from '../../../../../core/domains/appointment/repositories/database-repository'; | ||
import { DeleteSingleAppointmentService } from '../../../../../core/domains/appointment/use-cases/delete-single-appointment/delete-single-appointment.service'; | ||
|
||
@Injectable() | ||
export class NestjsDeleteAppointmentService extends DeleteSingleAppointmentService { | ||
constructor(appointmentDatabaseRepository: AppointmentDatabaseRepository) { | ||
super(appointmentDatabaseRepository); | ||
} | ||
} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...pointment/update-appointment/input.dto.ts → ...pointment/update-appointment/input.dto.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...pp/adapters/routes/v1/appointment/update-appointment/nestjs-update-appointment.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Injectable } from '@nestjs/common'; | ||
import { AppointmentDatabaseRepository } from '../../../../../core/domains/appointment/repositories/database-repository'; | ||
import { UpdateAppointmentService } from '../../../../../core/domains/appointment/use-cases/update-single-appointment/update-appointment.service'; | ||
|
||
@Injectable() | ||
export class NestjsUpdateAppointmentService extends UpdateAppointmentService { | ||
constructor(appointmentDatabaseRepository: AppointmentDatabaseRepository) { | ||
super(appointmentDatabaseRepository); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ointment/update-appointment.controller.ts → ...ointment/update-appointment.controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ppointment/update-appointment.e2e-spec.ts → ...ppointment/update-appointment.e2e-spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...create-clinic/create-clinic.controller.ts → ...create-clinic/create-clinic.controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...te-clinic/nestjs-create-clinic.service.ts → ...te-clinic/nestjs-create-clinic.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...delete-clinic/delete-clinic.controller.ts → ...delete-clinic/delete-clinic.controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...c/delete-clinic/delete-clinic.e2e-spec.ts → ...c/delete-clinic/delete-clinic.e2e-spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...te-clinic/nestjs-delete-clinic.service.ts → ...te-clinic/nestjs-delete-clinic.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...te-clinic/nestjs-update-clinic.service.ts → ...te-clinic/nestjs-update-clinic.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
...update-clinic/update-clinic.controller.ts → ...update-clinic/update-clinic.controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...atient-appointment-registry.controller.ts → ...atient-appointment-registry.controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.