Skip to content

Commit

Permalink
feat: create health professional repository
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-acampora committed Feb 26, 2023
1 parent 511911c commit 5d2e2e2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/main/kotlin/usecase/repository/HealthProfessionalRepository.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright (c) 2023. Smart Operating Block
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/

package usecase.repository

import entity.healthprofessional.HealthProfessional

/**
* The repository for health professionals management.
*/
interface HealthProfessionalRepository {

/** Create the given [healthProfessional]. */
fun createHealthProfessional(healthProfessional: HealthProfessional): HealthProfessional?

/** Delete the given [HealthProfessional] from its [healthProfessionalId] . */
fun deleteHealthProfessional(healthProfessionalId: String): Boolean

/** Returns a [HealthProfessional] given its [healthProfessionalId]. */
fun getHealthProfessional(healthProfessionalId: String): HealthProfessional
}

0 comments on commit 5d2e2e2

Please sign in to comment.