Ejemplo n.º 1
0
 public FollowController(IFollowService followService, IUserService userService
                         , ILogService logService
                         )
     : base(userService, logService)
 {
     this.serviceFollow = followService;
 }
Ejemplo n.º 2
0
 public ProfileCoverViewComponent(IUserService userService, IPhotoService photoService, IPostService postService, IFollowService followService)
 {
     _userService   = userService;
     _photoService  = photoService;
     _postService   = postService;
     _followService = followService;
 }
Ejemplo n.º 3
0
 public FollowsController(
     IFollowService follows,
     ICurrentUserService currentUser)
 {
     this.follows     = follows;
     this.currentUser = currentUser;
 }
Ejemplo n.º 4
0
 public FollowController(IFollowService followService, IUserService userService
     , ILogService logService
     )
     : base(userService, logService)
 {
     this.serviceFollow = followService;
 }
Ejemplo n.º 5
0
 public FollowRequestController(IHubContext <NotificationHub> hubContext, IUserService userService, IFollowService followService, INotificationService notificationService)
 {
     _hubContext          = hubContext;
     _userService         = userService;
     _followService       = followService;
     _notificationService = notificationService;
 }
Ejemplo n.º 6
0
 public ProfileController(UserManager <CustomUser> userManager, IPostService postService, IMapper mapper, IFollowService followService)
 {
     _userManager   = userManager;
     _postService   = postService;
     _mapper        = mapper;
     _followService = followService;
 }
Ejemplo n.º 7
0
 public TweetService(IUnitOfWork unitOfWork, IMapper mapper, IFollowService followService, IAppUserService appUserService)
 {
     _unitOfWork     = unitOfWork;
     _mapper         = mapper;
     _followService  = followService;
     _appUserService = appUserService;
 }
Ejemplo n.º 8
0
 public AppUserService(IUnitOfWork unitOfWork, IMapper mapper, UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, IFollowService followService)
 {
     _unitOfWork    = unitOfWork;
     _mapper        = mapper;
     _userManager   = userManager;
     _signInManager = signInManager;
     _followService = followService;
 }
Ejemplo n.º 9
0
 public AccountsController(
     IAccountService accountService,
     IFollowService followService
     )
 {
     _accountService = accountService;
     _followService  = followService;
 }
Ejemplo n.º 10
0
 public FriendsController(IFriendService friendService, IMediaService pictureService, IUserService customerService, IFollowService customerFollowService, IUserService userService)
 {
     _friendService         = friendService;
     _pictureService        = pictureService;
     _customerService       = customerService;
     _customerFollowService = customerFollowService;
     _userService           = userService;
 }
Ejemplo n.º 11
0
 public PeopleController(IFollowService followService,
                         IArticleService articleService,
                         IAccountService accountService)
 {
     _followService  = followService;
     _articleService = articleService;
     _accountService = accountService;
 }
 public FollowController(IUserService _userService,
                         IFollowService _followService,
                         INotificationService _notificationService)
 {
     this._userService         = _userService;
     this._followService       = _followService;
     this._notificationService = _notificationService;
 }
Ejemplo n.º 13
0
 public FollowController(IUserService userService, IFollowService followService, IUnitOfWork unitOfWork,
                         INotificationService notificationService)
 {
     _userService         = userService;
     _followService       = followService;
     _unitOfWork          = unitOfWork;
     _notificationService = notificationService;
 }
Ejemplo n.º 14
0
 public FriendsController(IFriendService friendService, IMediaService pictureService, IUserService customerService, IFollowService customerFollowService, IUserService userService)
 {
     _friendService = friendService;
     _pictureService = pictureService;
     _customerService = customerService;
     _customerFollowService = customerFollowService;
     _userService = userService;
 }
Ejemplo n.º 15
0
 public MyController(IFollowService followService,
                     IAccountService service,
                     IArticleService articleService)
 {
     _followService  = followService;
     _service        = service;
     _articleService = articleService;
 }
Ejemplo n.º 16
0
 public UsersController(IUsersService usersService, IBeatsService beatsService, IFollowService followService, UserManager <ApplicationUser> userManager, INotificationsService notificationsService)
 {
     this.usersService         = usersService;
     this.beatsService         = beatsService;
     this.followService        = followService;
     this.userManager          = userManager;
     this.notificationsService = notificationsService;
 }
 public ProfilesController(
     IProfileService profiles,
     IFollowService follows,
     ICurrentUserService currentUser)
 {
     this.profiles    = profiles;
     this.follows     = follows;
     this.currentUser = currentUser;
 }
Ejemplo n.º 18
0
        public ProfileController(IPostService postService, IUserService userService, IViewRenderService renderService,
                                 IPhotoService photoService, IFollowService followService)

        {
            _postService   = postService;
            _userService   = userService;
            _renderService = renderService;
            _photoService  = photoService;
            _followService = followService;
        }
 public FriendsController(IFriendService friendService, IMediaService pictureService, IUserService customerService, IFollowService customerFollowService, IUserService userService, INotificationService notificationService, MediaSettings mediaSettings)
 {
     _friendService         = friendService;
     _pictureService        = pictureService;
     _customerService       = customerService;
     _customerFollowService = customerFollowService;
     _userService           = userService;
     _notificationService   = notificationService;
     _mediaSettings         = mediaSettings;
 }
 public TweetService(IUnitOfWork unitOfWork,
                     IMapper mapper,
                     IAppUserService appUserService,
                     IFollowService followSerice)
 {
     this._unitOfWork     = unitOfWork;
     this._mapper         = mapper;
     this._appUserService = appUserService;
     this._followService  = followSerice;
 }
Ejemplo n.º 21
0
 public NotificationHub(IUserService userService, IConfiguration configuration, IFollowService followService,
                        IPostService postService, IImageService imageService, IStarService starService)
 {
     _userService   = userService;
     _configuration = configuration;
     _followService = followService;
     _postService   = postService;
     _imageService  = imageService;
     _starService   = starService;
 }
Ejemplo n.º 22
0
 public FollowController(
     ILiveClassService liveClass
     , IUserService _userService
     , IFollowService _followService
     )
 {
     _liveClass          = liveClass;
     this._userService   = _userService;
     this._followService = _followService;
 }
Ejemplo n.º 23
0
 public FollowsViewModel(IFollowService service, IMvxMessenger messenger)
 {
     _messenger = messenger;
     _service = service;
     RefleshFollows();
     _messenger.Subscribe<FollowsChanged>(x =>
     {
         RefleshFollows();
     }, MvxReference.Strong);
 }
Ejemplo n.º 24
0
 public ProfilesController(IProfileService profileService, IFollowService followService,
                           IMapper mapper, ILogger <ProfilesController> logger, ICurrentUserService currentUserService,
                           INotificationService notificationService)
 {
     _profileService      = profileService;
     _followService       = followService;
     _mapper              = mapper;
     _logger              = logger;
     _currentUserService  = currentUserService;
     _notificationService = notificationService;
 }
Ejemplo n.º 25
0
 public FollowsController(
     IFollowService followService,
     ICurrentUserService currentUser,
     INotificationService notificationService,
     IHubContext <NotificationHub> notificationHub)
 {
     this.followService       = followService;
     this.currentUser         = currentUser;
     this.notificationService = notificationService;
     this.notificationHub     = notificationHub;
 }
Ejemplo n.º 26
0
 public ActivityService(IActivityRepository _repo, IFollowService _followService
                        , IInvitService _invitService
                        , INotificationRepository _notificationRepo
                        , IUserService _userService
                        )
 {
     this.repoActivity     = _repo;
     this.serviceFollow    = _followService;
     this.serviceInvit     = _invitService;
     this.repoNotification = _notificationRepo;
     this.serviceUser      = _userService;
 }
Ejemplo n.º 27
0
 public ProjectController(IProjectService project
                          , ISecurityService security
                          , IFollowService follow
                          , IUserService userService
                          , ILogService logService
                          )
     : base(userService, logService)
 {
     this.serviceSecurity = security;
     this.serviceProject  = project;
     this.serviceFollow   = follow;
 }
Ejemplo n.º 28
0
 public AccountController(UserManager <ApplicationUser> userManager,
                          SignInManager <ApplicationUser> signInManager,
                          IUserSessionService userSessionService,
                          IPhotoFileProcessor photoFileProcessor,
                          IFollowService followService)
 {
     this._userManager        = userManager;
     this._signInManager      = signInManager;
     this._photoFileProcessor = photoFileProcessor;
     this._userSessionService = userSessionService;
     this._followService      = followService;
 }
Ejemplo n.º 29
0
 public FollowController(Core.IWorkContext workContext,
                         IRateSrevice _rateRepository, ICategoryService _categoryRepository, IFollowService _followRepository,
                         IBlackListService _blackListService, IPostService _postService, ICustomerService _customerContext)
 {
     this._workContext        = workContext;
     this._categoryRepository = _categoryRepository;
     this._rateRepository     = _rateRepository;
     this._customerContext    = _customerContext;
     this._postService        = _postService;
     this._followRepository   = _followRepository;
     this._blackListService   = _blackListService;
 }
Ejemplo n.º 30
0
 public ProjectController(IProjectService project
     , ISecurityService security
     , IFollowService follow
     , IUserService userService
     , ILogService logService
     )
     : base(userService, logService)
 {
     this.serviceSecurity = security;
     this.serviceProject = project;
     this.serviceFollow = follow;
 }
Ejemplo n.º 31
0
 public ActivityService(IActivityRepository _repo, IFollowService _followService
     , IInvitService _invitService
     , INotificationRepository _notificationRepo
     , IUserService _userService
         )
 {
     this.repoActivity = _repo;
     this.serviceFollow = _followService;
     this.serviceInvit = _invitService;
     this.repoNotification = _notificationRepo;
     this.serviceUser = _userService;
 }
Ejemplo n.º 32
0
 public RoomController(ILiveClassService liveClass
                       , IUserService _userService
                       , IServerService _serverService
                       , IAnchorService _anchorService
                       , IFollowService _followService
                       )
 {
     _liveClass          = liveClass;
     this._userService   = _userService;
     this._serverService = _serverService;
     this._anchorService = _anchorService;
     this._followService = _followService;
 }
 public SkillController(ISkillService skillService, IUserService userService, IMediaService mediaService, MediaSettings mediaSettings, IUserSkillService userSkillService, GeneralSettings generalSettings, IPermalinkService permalinkService, IFollowService followService, ILikeService likeService, ICommentService commentService, SkillSettings skillSettings)
 {
     _skillService     = skillService;
     _userService      = userService;
     _mediaService     = mediaService;
     _mediaSettings    = mediaSettings;
     _userSkillService = userSkillService;
     _generalSettings  = generalSettings;
     _permalinkService = permalinkService;
     _followService    = followService;
     _likeService      = likeService;
     _commentService   = commentService;
     _skillSettings    = skillSettings;
 }
 public UserController(IUserService userService, IRoleService roleService, UserSettings userSettings, SecuritySettings securitySettings, IUserRegistrationService userRegistrationService, ICryptographyService cryptographyService, IMediaService mediaService, MediaSettings mediaSettings, IFollowService followService, IFriendService friendService, GeneralSettings generalSettings, INotificationService notificationService)
 {
     _userService             = userService;
     _userSettings            = userSettings;
     _securitySettings        = securitySettings;
     _userRegistrationService = userRegistrationService;
     _cryptographyService     = cryptographyService;
     _mediaService            = mediaService;
     _mediaSettings           = mediaSettings;
     _followService           = followService;
     _friendService           = friendService;
     _generalSettings         = generalSettings;
     _notificationService     = notificationService;
     _roleService             = roleService;
 }
Ejemplo n.º 35
0
 public UserController(Core.IWorkContext workContext, IRateSrevice _rateRepository, IFollowService _followRepository, IPaymentService _paymentRepository,
                       IBlackListService _blackListService, ICustomerServicesService _customerServiceContext, IPostService _postService, ICustomerService _customerContext, ISettingService _settingRepository, INotificationService _notificationService)
 {
     this._notificationService    = _notificationService;
     this._paymentRepository      = _paymentRepository;
     this._settingRepository      = _settingRepository;
     this._followRepository       = _followRepository;
     this._workContext            = workContext;
     this._rateRepository         = _rateRepository;
     this._customerContext        = _customerContext;
     this._postService            = _postService;
     this._blackListService       = _blackListService;
     this._customerServiceContext = _customerServiceContext;
     Settings     = _settingRepository.GetSettings();
     PagingParams = new PagingParams();
 }
Ejemplo n.º 36
0
 public VideoBattleController(
     IVideoBattleService videoBattleService,
     IVideoBattleParticipantService videoBattleParticipantService,
     IVideoBattleVideoService videoBattleVideoService,
     IVideoBattleVoteService videoBattleVoteService,
     IVideoBattlePrizeService videoBattlePrizeService,
     IUserService userService,
     IWatchedVideoService watchedVideoService,
     IMediaService pictureService,
     ISponsorService sponsorService,
     ITimelineAutoPublisher timelineAutoPublisher,
     ISettingService settingService,
     IPaymentProcessingService paymentProcessingService,
     IFollowService followService,
     ICreditService creditService,
     IFormatterService formatterService,
     IEmailSender emailSender,
     IMobSocialVideoProcessor videoProcessor,
     MediaSettings mediaSettings,
     PaymentSettings paymentSettings,
     BattleSettings battleSettings,
     GeneralSettings generalSettings)
 {
     _videoBattleService = videoBattleService;
     _videoBattleParticipantService = videoBattleParticipantService;
     _videoBattleVideoService = videoBattleVideoService;
     _videoBattleVoteService = videoBattleVoteService;
     _videoBattlePrizeService = videoBattlePrizeService;
     _userService = userService;
     _watchedVideoService = watchedVideoService;
     _timelineAutoPublisher = timelineAutoPublisher;
     _settingService = settingService;
     _paymentProcessingService = paymentProcessingService;
     _followService = followService;
     _creditService = creditService;
     _paymentSettings = paymentSettings;
     _battleSettings = battleSettings;
     _formatterService = formatterService;
     _emailSender = emailSender;
     _generalSettings = generalSettings;
     _videoProcessor = videoProcessor;
     _sponsorService = sponsorService;
     _pictureService = pictureService;
     _mediaSettings = mediaSettings;
 }
Ejemplo n.º 37
0
 public TimelineController(ITimelineService timelineService,
     IFollowService customerFollowService,
     IUserService userService,
     IMediaService pictureService,
     MediaSettings mediaSettings,
     IVideoBattleService videoBattleService, 
     ILikeService customerLikeService, 
     ICommentService customerCommentService)
 {
     _timelineService = timelineService;
     _customerFollowService = customerFollowService;
     _userService = userService;
     _pictureService = pictureService;
     _mediaSettings = mediaSettings;
     _videoBattleService = videoBattleService;
     _customerLikeService = customerLikeService;
     _customerCommentService = customerCommentService;
 }
Ejemplo n.º 38
0
 public void MyTestInitialize()
 {
     var kernel = NinjectWebCommon.CreatePublicKernel();
     service = kernel.Get<IFollowService>();
 }
Ejemplo n.º 39
0
 public FollowEditViewModel()
 {
     _followService = Mvx.Resolve<IFollowService>();
 }
Ejemplo n.º 40
0
 public override void CreateTestableObject()
 {
     this.followService = Ioc.Resolve<IFollowService>();
 }
Ejemplo n.º 41
0
 public UserService(IUserDao userContext, IFollowService followContext)
 {
     this.userContext = userContext;
     this.followContext = followContext;
 }
Ejemplo n.º 42
0
		public AlertService(IFollowService followService, IWebService webService)
        {
            _WebService = webService;
            _followService = followService;
        }
Ejemplo n.º 43
0
 public TweetController(ITweetService _tweetService, IUserService _userService, IFollowService _followService)
 {
     this.tweetService = _tweetService;
     this.userService = _userService;
     this.followService = _followService;
 }