Package com. htueko. resumeapp. domain. usecase
Types
Link copied to clipboard
class DeleteEducationByIdUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to delete Education from local database. actually converted to entity then delete.
Link copied to clipboard
class DeleteProjectByIdUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to delete Project from local database. actually converted to entity then delete.
Link copied to clipboard
class DeleteResumeUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to delete Resume from local database. actually converted to entity then delete.
Link copied to clipboard
class DeleteSkillByIdUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to delete Skill from local database. actually converted to entity then delete.
Link copied to clipboard
class DeleteWorkByIdUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to delete Work from local database. actually converted to entity then delete.
Link copied to clipboard
class GetResumeByIdUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to get the everything related to resume.
Link copied to clipboard
class GetResumeUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to get the list of Resume from local database.
Link copied to clipboard
class InsertOrUpdateEducationsUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to insert or update the list of Education instance.
Link copied to clipboard
class InsertOrUpdateProjectsUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to insert or update the list of Project instance.
Link copied to clipboard
class InsertOrUpdateResumeUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to insert or update the Resume instance
Link copied to clipboard
class InsertOrUpdateSkillsUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to insert or update the list of Skill instance.
Link copied to clipboard
class InsertOrUpdateWorksUseCase @Inject constructor(localRepository: LocalRepository)
Content copied to clipboard
to insert or update the list of Work instance.