Exemple #1
0
 public ProfileController(
     IProfileManagementService profileManagementService,
     ITableEditorService tableEditorService)
 {
     _profileManagementService = profileManagementService;
     _tableEditorService       = tableEditorService;
 }
Exemple #2
0
 public ProfileController(
     IProfileManagementService profileManagementService,
     IWebHostEnvironment env)
 {
     this.profileManagementService = profileManagementService;
     this.env = env;
 }
 public AuthorizationController(
     IProfileManagementService profileManagementService,
     IAuthorizationService authorizationService)
 {
     _profileManagementService = profileManagementService;
     _authorizationService     = authorizationService;
 }
 public IndexModel(
     UserManager <SocialNetworkUser> userManager,
     SignInManager <SocialNetworkUser> signInManager,
     IProfileManagementService profileManagementService,
     IWebHostEnvironment env)
 {
     this._userManager             = userManager;
     this._signInManager           = signInManager;
     this.profileManagementService = profileManagementService;
     this.env = env;
 }
Exemple #5
0
 public ControllerAdditionalFunctionality(IProfileManagementService profileManagementService)
 {
     this.profileManagementService = profileManagementService;
 }
Exemple #6
0
 public ProfileManagementController(IProfileManagementService profileManagementService)
 {
     _profileManagementService = profileManagementService;
 }