Skip to content

Instantly share code, notes, and snippets.

@virendersran01
Forked from Aldikitta/UseCaseImpl.kt
Created June 18, 2023 13:19
Show Gist options
  • Save virendersran01/d0470302d5c5ac3201298d968ff37a67 to your computer and use it in GitHub Desktop.
Save virendersran01/d0470302d5c5ac3201298d968ff37a67 to your computer and use it in GitHub Desktop.
override suspend fun getDetailAgentVisitWithFullResponse(id: Int): SallyResponseResource<BaseResponse<GetAgentDetailResponse>> {
return iAgentVisitRepository.getDetailAgentVisitWithFullResponse(id)
}
override fun getDetailAgentVisitFullResponseFlow(id: Int): Flow<SallyResponseResource<BaseResponse<GetAgentDetailResponse>>> {
return iAgentVisitRepository.getDetailAgentVisitFullResponseFlow(id)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment