Ejemplo n.º 1
0
 def __init__(self):
     Manager.__init__(self, FollowUpRepo)
Ejemplo n.º 2
0
 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()
Ejemplo n.º 4
0
 def __init__(self):
     Manager.__init__(self, PatientRepo)
Ejemplo n.º 5
0
 def __init__(self):
     Manager.__init__(self, ReadingRepo)
Ejemplo n.º 6
0
 def __init__(self):
     Manager.__init__(self, ReferralRepo)
Ejemplo n.º 7
0
 def __init__(self):
     Manager.__init__(self, urineTestRepo)
Ejemplo n.º 8
0
 def __init__(self):
     Manager.__init__(self, UserRepo)
Ejemplo n.º 9
0
 def __init__(self):
     self._System = System()
     self._Manager = Manager(self._System)
     self._Server = Server(self._System)
     self._Updater = Updater()
Ejemplo n.º 10
0
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)
Ejemplo n.º 11
0
 def __init__(self):
     Manager.__init__(self, PatientFacilityRepo)