Beispiel #1
0
 public PhysicianAssignmentController(ISessionContext sessionContext, IPhysicianCustomerAssignmentRepository physicianCustomerAssignmentRepository,
                                      IPhysicianAssignmentService physicianAssignmentService, IHospitalPartnerRepository hospitalPartnerRepository, IEventTestRepository eventTestRepository)
 {
     _sessionContext = sessionContext;
     _physicianCustomerAssignmentRepository = physicianCustomerAssignmentRepository;
     _physicianAssignmentService            = physicianAssignmentService;
     _hospitalPartnerRepository             = hospitalPartnerRepository;
     _eventTestRepository = eventTestRepository;
 }
Beispiel #2
0
 public PhysicianAssignmentService(IPhysicianEventAssignmentRepository physicianEventAssignmentRepository, IPhysicianCustomerAssignmentRepository physicianCustomerAssignmentRepository,
                                   IPhysicianRepository physicianRepository, IEventCustomerRepository eventCustomerRepository, IEventPhysicianTestRepository eventPhysicianTestRepository, IEventPhysicianTestFactory eventPhysicianTestFactory)
 {
     _physicianEventAssignmentRepository    = physicianEventAssignmentRepository;
     _physicianCustomerAssignmentRepository = physicianCustomerAssignmentRepository;
     _physicianRepository          = physicianRepository;
     _eventCustomerRepository      = eventCustomerRepository;
     _eventPhysicianTestRepository = eventPhysicianTestRepository;
     _eventPhysicianTestFactory    = eventPhysicianTestFactory;
 }