aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala
diff options
context:
space:
mode:
authorvlad <vlad@driver.xyz>2017-10-05 17:31:52 -0700
committervlad <vlad@driver.xyz>2017-10-05 17:31:52 -0700
commitd9bb907bc15445dd2db14be8c033fcfce2fd59c1 (patch)
tree1f634aced572b496cb6d893eb215b4341cd2e6a7 /src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala
parent6751966577c0f005858f372458ccdb72be7d879f (diff)
downloadrest-query-d9bb907bc15445dd2db14be8c033fcfce2fd59c1.tar.gz
rest-query-d9bb907bc15445dd2db14be8c033fcfce2fd59c1.tar.bz2
rest-query-d9bb907bc15445dd2db14be8c033fcfce2fd59c1.zip
Removing "predicted" stuff, Refining EligibilityVerificationServicev0.6.4v0.6.3
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala b/src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala
index 7395400..c09dd9a 100644
--- a/src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala
+++ b/src/main/scala/xyz/driver/pdsuidomain/services/EligibilityVerificationService.scala
@@ -4,6 +4,7 @@ import xyz.driver.core.Id
import xyz.driver.core.rest.AuthorizedServiceRequestContext
import xyz.driver.entities.patient.{CancerType, Patient}
import xyz.driver.entities.users.AuthUserInfo
+import xyz.driver.pdsuicommon.domain.LongId
import xyz.driver.pdsuidomain.entities.eligibility.{MatchedPatient, MismatchRankedLabels}
import xyz.driver.pdsuidomain.entities.Arm
@@ -14,6 +15,6 @@ trait EligibilityVerificationService {
def getMatchedPatients()(implicit ctx: AuthorizedServiceRequestContext[AuthUserInfo]): ListT[Future, MatchedPatient]
- def getMismatchRankedLabels(patientId: Id[Patient], cancerType: CancerType, excludedArms: Seq[Id[Arm]])(
+ def getMismatchRankedLabels(patientId: Id[Patient], cancerType: CancerType, excludedArms: Seq[LongId[Arm]])(
implicit ctx: AuthorizedServiceRequestContext[AuthUserInfo]): Future[MismatchRankedLabels]
}