Пример #1
0
 def __init__(self):
     Manager.__init__(self, FollowUpRepo)
Пример #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()
Пример #4
0
 def __init__(self):
     Manager.__init__(self, PatientRepo)
Пример #5
0
 def __init__(self):
     Manager.__init__(self, ReadingRepo)
Пример #6
0
 def __init__(self):
     Manager.__init__(self, ReferralRepo)
 def __init__(self):
     Manager.__init__(self, urineTestRepo)
Пример #8
0
 def __init__(self):
     Manager.__init__(self, UserRepo)
Пример #9
0
 def __init__(self):
     self._System = System()
     self._Manager = Manager(self._System)
     self._Server = Server(self._System)
     self._Updater = Updater()
Пример #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)
Пример #11
0
 def __init__(self):
     Manager.__init__(self, PatientFacilityRepo)