public AppointementStatusController(ManageHospitalDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public OperationResultController(ManageHospitalDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #3
0
 public TaxController(ManageHospitalDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #4
0
 public DoctorCategoryController(ManageHospitalDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #5
0
 public RequestStatusController(ManageHospitalDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #6
0
 public AnssuranceController(ManageHospitalDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public UserService(ManageHospitalDBContext context)
 {
     _context = context;
 }
 public ProductImageController(ManageHospitalDBContext context, IMapper mapper, IWebHostEnvironment webHostEnvironment)
 {
     _context            = context;
     _mapper             = mapper;
     _webHostEnvironment = webHostEnvironment;
 }