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; }
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; }