Example #1
0
 public ProfileController(
     InkettUserManager userManager,
     IProfileService profileService)
 {
     _userManager    = userManager;
     _profileService = profileService;
 }
Example #2
0
 public TattooController(
     InkettUserManager userManager,
     ITattooService tattooService)
 {
     _userManager   = userManager;
     _tattooService = tattooService;
 }
 public NotificationController(INotificationViewModelService notificationViewModelService,
                               InkettUserManager inkettUserManager,
                               INotificationService notificationService)
 {
     _notificationViewModelService = notificationViewModelService;
     _inkettUserManager            = inkettUserManager;
     _notificationService          = notificationService;
 }
Example #4
0
 public ManageController(
     InkettUserManager userManager,
     SignInManager <ApplicationUser> signInManager,
     UrlEncoder urlEncoder)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _urlEncoder    = urlEncoder;
 }
 public AccountController(
     InkettUserManager userManager,
     SignInManager <ApplicationUser> signInManager,
     IProfileService profileService)
 {
     _userManager    = userManager;
     _signInManager  = signInManager;
     _profileService = profileService;
 }
Example #6
0
 public AlbumController(
     InkettUserManager userManager,
     IAlbumService albumService,
     IProfileService profileService,
     IAlbumViewModelService albumViewModelService,
     IAuthorizationService authorizationService)
 {
     _albumService          = albumService;
     _userManager           = userManager;
     _albumViewModelService = albumViewModelService;
     _authorizationService  = authorizationService;
 }
 public ProfileController(
     InkettUserManager userManager,
     IProfileViewModelService profileViewModelService,
     IImageService imageService,
     IProfileService profileService,
     IAlbumService albumService,
     IAuthorizationService authorizationService
     )
 {
     _userManager             = userManager;
     _profileViewModelService = profileViewModelService;
     _profileService          = profileService;
     _imageService            = imageService;
     _albumService            = albumService;
     _authorizationService    = authorizationService;
 }
Example #8
0
 public TattooController(ITattooViewModelService tattooViewModelService,
                         InkettUserManager userManager,
                         IAuthorizationService authorizationService,
                         ITattooService tattooService,
                         ICommentService commentService,
                         IProfileService profileService,
                         INotificationService notificationService)
 {
     _tattooViewModelService = tattooViewModelService;
     _userManager            = userManager;
     _authorizationService   = authorizationService;
     _tattooService          = tattooService;
     _commentService         = commentService;
     _profileService         = profileService;
     _notificationService    = notificationService;
 }
Example #9
0
 public ResourceAuthorizationHandler(
     InkettUserManager userManager)
 {
     _userManager = userManager;
 }