package org.octopus.internal.services
import org.octopus.internal.common.models.Entry
import org.octopus.internal.web.utils.dtos.EntryDto
interface EntryService {
fun createEntry(entry: EntryDto): Entry
fun getAllEntries(): MutableList<Entry>
}