``` @Service @ConditionalOnMissingBean(PatientServ...
# spring
x
Copy code
@Service
@ConditionalOnMissingBean(PatientService::class)
class DetachedPatientService(private val emrRepo: EmrRepository) : PatientService {
this should instantiate if no other patient service’s have been created right?