public ProfilesController(ApplicationUserManager userManager,
                           ApplicationDbContext context, IProfilePictureService profilePictureService)
 {
     UserManager           = userManager;
     Context               = context;
     ProfilePictureService = profilePictureService;
 }
Beispiel #2
0
 public CreateLocalUserCommandHandler(
     ILocalUserService userService, IProfilePictureService profilePictureService, ILogger <CreateLocalUserCommandHandler> logger)
 {
     this._userService           = userService;
     this._profilePictureService = profilePictureService;
     this._logger = logger;
 }
Beispiel #3
0
 public IndexModel(
     ApplicationUserManager userManager,
     SignInManager <ApplicationUser> signInManager,
     IEmailSender emailSender,
     IProfilePictureService profilePictureService)
 {
     _userManager           = userManager;
     _signInManager         = signInManager;
     _emailSender           = emailSender;
     _profilePictureService = profilePictureService;
 }
Beispiel #4
0
 public LocalUserController(
     IMediator mediator,
     ILocalUserService localUserService,
     IProfilePictureService profilePictureService,
     ILogger <LocalUserController> logger
     )
 {
     _mediator                   = mediator ?? throw new ArgumentNullException(nameof(mediator));
     _localUserService           = localUserService;
     this._profilePictureService = profilePictureService ?? throw new ArgumentNullException(nameof(profilePictureService));
     _logger = logger;
 }
 public UserServices(
     SimpleSocialContext dbContext,
     IMapper mapper,
     IFollowersServices followersServices,
     IProfilePictureService profilePictureService,
     UserManager <SimpleSocialUser> userManager)
 {
     this.dbContext             = dbContext;
     this.mapper                = mapper;
     this.followersServices     = followersServices;
     this.profilePictureService = profilePictureService;
     this.userManager           = userManager;
 }
 public AccountController(
     IUserServices userServices,
     IPostServices postServices,
     IFollowersServices followersServices,
     IProfilePictureService profilePictureService,
     UserManager <SimpleSocialUser> userManager
     )
 {
     this.userServices          = userServices;
     this.postServices          = postServices;
     this.followersServices     = followersServices;
     this.profilePictureService = profilePictureService;
     this.userManager           = userManager;
 }
Beispiel #7
0
 public IndexModel(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     IUsersService usersService,
     IDoctorsService doctorsService,
     ICareersInfoService careersInfoService,
     ICloudinaryService cloudinaryService,
     IProfilePictureService profilePictureService)
 {
     this._userManager          = userManager;
     this._signInManager        = signInManager;
     this.usersService          = usersService;
     this.careersInfoService    = careersInfoService;
     this.doctorsService        = doctorsService;
     this.cloudinaryService     = cloudinaryService;
     this.profilePictureService = profilePictureService;
 }
Beispiel #8
0
 public ImageController(UserManager<ChirpUser> a_userManager, IProfilePictureService a_profilePictureService)
 {
     m_userManager = a_userManager;
     m_profilePictureService = a_profilePictureService;
 }
 public ImageController(UserManager <TwitterCloneUser> a_userManager, IProfilePictureService a_profilePictureService)
 {
     m_userManager           = a_userManager;
     m_profilePictureService = a_profilePictureService;
 }
Beispiel #10
0
 public ImageController(UserManager <ChirpUser> a_userManager, IProfilePictureService a_profilePictureService)
 {
     m_userManager           = a_userManager;
     m_profilePictureService = a_profilePictureService;
 }