public SearchServices(
     IFollowersServices followersServices,
     UserManager <SimpleSocialUser> userManager,
     SimpleSocialContext dbContext)
 {
     this.followersServices = followersServices;
     this.userManager       = userManager;
     this.dbContext         = dbContext;
 }
 public SearchServices(
     IRepository <SimpleSocialUser> userRepository,
     IFollowersServices followersServices,
     UserManager <SimpleSocialUser> userManager)
 {
     this.userRepository    = userRepository;
     this.followersServices = followersServices;
     this.userManager       = userManager;
 }
 public UserServices(
     SimpleSocialContext dbContext,
     IMapper mapper,
     IFollowersServices followersServices,
     UserManager <SimpleSocialUser> userManager)
 {
     this.dbContext         = dbContext;
     this.mapper            = mapper;
     this.followersServices = followersServices;
     this.userManager       = userManager;
 }
Beispiel #4
0
 public ProfilesController(
     UserManager <SimpleSocialUser> userManager,
     IUserServices userServices,
     IPostServices postServices,
     IFollowersServices followersServices)
 {
     this.userManager       = userManager;
     this.userServices      = userServices;
     this.postServices      = postServices;
     this.followersServices = followersServices;
 }
Beispiel #5
0
 public ReportsController(
     UserManager <SimpleSocialUser> userManager,
     IPostServices postServices,
     IReportsService reportsService,
     IFollowersServices followersServices)
 {
     this.userManager       = userManager;
     this.postServices      = postServices;
     this.reportsService    = reportsService;
     this.followersServices = followersServices;
 }
Beispiel #6
0
 public ReportsService(
     IPostServices postServices,
     IFollowersServices followersServices,
     SimpleSocialContext dbContext,
     UserManager <SimpleSocialUser> userManager)
 {
     this.postServices      = postServices;
     this.followersServices = followersServices;
     this.dbContext         = dbContext;
     this.userManager       = userManager;
 }
 public ReportsService(
     IRepository <Post> postRepository,
     IRepository <PostReport> reportsRepository,
     IPostServices postServices,
     IFollowersServices followersServices,
     UserManager <SimpleSocialUser> userManager)
 {
     this.postRepository    = postRepository;
     this.reportsRepository = reportsRepository;
     this.postServices      = postServices;
     this.followersServices = followersServices;
     this.userManager       = userManager;
 }
 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(
     IMyProfileServices myProfileServices,
     IUserServices userServices,
     IPostServices postServices,
     IFollowersServices followersServices,
     UserManager <SimpleSocialUser> userManager
     )
 {
     this.myProfileServices = myProfileServices;
     this.userServices      = userServices;
     this.postServices      = postServices;
     this.followersServices = followersServices;
     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 #11
0
 public UserServices(
     IRepository <SimpleSocialUser> userRepository,
     IRepository <Wall> wallRepository,
     IRepository <ProfilePicture> profilePicturesRepository,
     IRepository <UserFollower> userFollowersRepository,
     IFollowersServices followersServices,
     UserManager <SimpleSocialUser> userManager)
 {
     this.userRepository            = userRepository;
     this.wallRepository            = wallRepository;
     this.profilePicturesRepository = profilePicturesRepository;
     this.userFollowersRepository   = userFollowersRepository;
     this.followersServices         = followersServices;
     this.userManager = userManager;
 }
Beispiel #12
0
 public FollowersController(IFollowersServices followersServices, IUserServices userServices)
 {
     this.followersServices = followersServices;
     this.userServices      = userServices;
 }
Beispiel #13
0
 public FollowerApiController(IFollowersServices followerService)
 {
     _FollowerService = followerService;
 }
Beispiel #14
0
 public FollowersController(IFollowersServices followersServices)
 {
     this.followersServices = followersServices;
 }