Package com.htueko.resumeapp.domain.usecase

Types

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

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

Link copied to clipboard
class DeleteProjectByIdUseCase @Inject constructor(localRepository: LocalRepository)

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

Link copied to clipboard
class DeleteResumeUseCase @Inject constructor(localRepository: LocalRepository)

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

Link copied to clipboard
class DeleteSkillByIdUseCase @Inject constructor(localRepository: LocalRepository)

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

Link copied to clipboard
class DeleteWorkByIdUseCase @Inject constructor(localRepository: LocalRepository)

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

Link copied to clipboard
class GetResumeByIdUseCase @Inject constructor(localRepository: LocalRepository)

to get the everything related to resume.

Link copied to clipboard
class GetResumeUseCase @Inject constructor(localRepository: LocalRepository)

to get the list of Resume from local database.

Link copied to clipboard
class InsertOrUpdateEducationsUseCase @Inject constructor(localRepository: LocalRepository)

to insert or update the list of Education instance.

Link copied to clipboard
class InsertOrUpdateProjectsUseCase @Inject constructor(localRepository: LocalRepository)

to insert or update the list of Project instance.

Link copied to clipboard
class InsertOrUpdateResumeUseCase @Inject constructor(localRepository: LocalRepository)

to insert or update the Resume instance

Link copied to clipboard
class InsertOrUpdateSkillsUseCase @Inject constructor(localRepository: LocalRepository)

to insert or update the list of Skill instance.

Link copied to clipboard
class InsertOrUpdateWorksUseCase @Inject constructor(localRepository: LocalRepository)

to insert or update the list of Work instance.