-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚀 video and appointment Repositorys extended IRepository
- Loading branch information
Showing
9 changed files
with
24 additions
and
19 deletions.
There are no files selected for viewing
5 changes: 2 additions & 3 deletions
5
server/src/domain/interface/repositories/IAppointmentRepository.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
import { PaginatedResult } from "../../../types"; | ||
|
||
export default interface IRepository<T> { | ||
findById(id: string): Promise<T | null>; | ||
findAll(): Promise<T[]>; | ||
findAll?(): Promise<T[]>; | ||
findManyByIds?(ids: string[]): Promise<T[] | null>; | ||
findManyAsPaginated?(offset: number, limit: number): Promise<PaginatedResult<T> | null>; | ||
create(entity: T): Promise<T>; | ||
update(id: string, entity: T): Promise<T | null>; | ||
delete(id: string): Promise<void>; | ||
delete?(id: string): Promise<void>; | ||
} |
7 changes: 2 additions & 5 deletions
7
server/src/domain/interface/repositories/IVideoSectionRepository.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
server/src/infrastructure/repositories/VideoSectionRepository.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
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
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
2facc6a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
avm-care – ./
avm-care-git-main-sinans-projects-8d312afe.vercel.app
avm-care-sinans-projects-8d312afe.vercel.app
avm-care.vercel.app