Beispiel #1
0
 public HomeController(ISpecialistService specialistService, IReviewService reviewService,
                       IMeetingPointService meetingPointService, ICategoryService categoryService, Initializer initializer)
 {
     _specialistService   = specialistService;
     _reviewService       = reviewService;
     _meetingPointService = meetingPointService;
     _categoryService     = categoryService;
 }
Beispiel #2
0
 public ProfileController(
     UserManager <AppUser> userManager,
     ISpecialistService specialistService,
     IMeetingPointService meetingPointService,
     ICategoryService categoryService,
     LocationService locationService)
 {
     _userManager          = userManager;
     _specialistService    = specialistService;
     _meetingPointService  = meetingPointService;
     this._categoryService = categoryService;
     this._locationService = locationService;
 }
 public QuestionViewComponent(IMeetingPointService meetingPointService)
 {
     _meetingPointService = meetingPointService;
 }