Beispiel #1
0
 public AccountController(IAuthenticationManagementService authenticationManagementService,
                          IPersonManagementService personManagementService, IUniversityRepository universityRepository,
                          ISliderService sliderService)
 {
     _authenticationManagementService = authenticationManagementService;
     _personManagementService         = personManagementService;
     _universityRepository            = universityRepository;
     _sliderService = sliderService;
 }
Beispiel #2
0
 public HomeController(IAuthenticationManagementService authenticationManagementService,
                       ITextDefaultService textDefaultService)
 {
     _authenticationManagementService = authenticationManagementService;
     _textDefaultService = textDefaultService;
 }