def __init__(self): Manager.__init__(self, FollowUpRepo)
def __init__(self): Manager.__init__(self, HealthFacilityRepo)
def __init__(self): Manager.__init__(self, PatientAssociationsRepo) self.patient_repo = PatientRepo() self.facility_repo = HealthFacilityRepo() self.user_repo = UserRepo()
def __init__(self): Manager.__init__(self, PatientRepo)
def __init__(self): Manager.__init__(self, ReadingRepo)
def __init__(self): Manager.__init__(self, ReferralRepo)
def __init__(self): Manager.__init__(self, urineTestRepo)
def __init__(self): Manager.__init__(self, UserRepo)
def __init__(self): self._System = System() self._Manager = Manager(self._System) self._Server = Server(self._System) self._Updater = Updater()
from Manager.Manager import Manager from Database.ReferralRepo import ReferralRepo from Database.ReadingRepoNew import ReadingRepo from Database.PatientRepoNew import PatientRepo from Database.HealthFacilityRepoNew import HealthFacilityRepo referralManager = Manager(ReferralRepo) patientManager = Manager(PatientRepo) readingManager = Manager(ReadingRepo) healthFacilityManager = Manager(HealthFacilityRepo)
def __init__(self): Manager.__init__(self, PatientFacilityRepo)