AssignmentRepository

interface AssignmentRepository: Any

Provides functions to query Assignments that have been persisted in the database.

Methods

findByOwnerUserId

abstract fun findByOwnerUserId(ownerUserId: String): List<Assignment>

Parameters

Name Description
ownerUserId: String

ReturnValue

Name Description
List<Assignment>