Beispiel #1
0
 public TreatmentSessionController(IOpperationRepository _opperationRepository, ITreatmentRepository _treatmentRepository, ITreatmentBL _treatmentBL, IMaterialRepository _materialRepository, ISessionStateManger _sessionStateManger, IDoctorRepository _doctorRepository, IAppointmentRepository _appointmentRepository, IMatrailBL _matrailBL)
 {
     opperationRepository  = _opperationRepository;
     treatmentRepository   = _treatmentRepository;
     treatmentBL           = _treatmentBL;
     materialRepository    = _materialRepository;
     sessionStateManger    = _sessionStateManger;
     doctorRepository      = _doctorRepository;
     appointmentRepository = _appointmentRepository;
     matrailBL             = _matrailBL;
 }
Beispiel #2
0
 public ProviderController(
     IFoodBL foodBL,
     IFoodDataBL foodDataBL,
     ITransactionBL transactionBL,
     ITreatmentBL treatmentBL,
     IPremisesBL premisesBL,
     IMapper mapper)
 {
     _foodBL        = foodBL;
     _foodDataBL    = foodDataBL;
     _transactionBL = transactionBL;
     _treatmentBL   = treatmentBL;
     _premisesBL    = premisesBL;
     _mapper        = mapper;
 }