You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
405 B
11 lines
405 B
package allin.data
|
|
|
|
import allin.model.Participation
|
|
|
|
interface ParticipationDataSource {
|
|
fun addParticipation(participation: Participation)
|
|
fun getParticipationFromBetId(betid: String): List<Participation>
|
|
fun getParticipationFromUserId(username: String, betid: String): List<Participation>
|
|
fun deleteParticipation(id: String): Boolean
|
|
fun getBestWinFromUserid(userId: String): Int?
|
|
} |