DeleteEducationByIdUseCase

class DeleteEducationByIdUseCase @Inject constructor(localRepository: LocalRepository)

to delete Education from local database. actually converted to entity then delete.

Parameters

localRepository

repository that operated for local database.

Constructors

Link copied to clipboard
@Inject
fun DeleteEducationByIdUseCase(localRepository: LocalRepository)

Functions

Link copied to clipboard
suspend operator fun invoke(education: Education)

Properties

Link copied to clipboard
private val localRepository: LocalRepository