public CallbackController(IUserService userService, IDigitLogger digitLogger, IFocusService focusService) { this.userService = userService; this.digitLogger = digitLogger; this.focusService = focusService; }
public GoalController(IGoalService goalService, IMetricService metricService, IFocusService focusService, ISupportService supportService, IUpdateService updateService, ICommentService commentService, IUserService userService, ISecurityTokenService securityTokenService, ISupportInvitationService supportInvitationService, IGoalStatusService goalStatusService, ICommentUserService commentUserService, IUpdateSupportService updateSupportService) { this.goalService = goalService; this.supportInvitationService = supportInvitationService; this.metricService = metricService; this.focusService = focusService; this.supportService = supportService; this.updateService = updateService; this.commentService = commentService; this.userService = userService; this.securityTokenService = securityTokenService; this.goalStatusService = goalStatusService; this.commentUserService = commentUserService; this.updateSupportService = updateSupportService; }
public HomeController(IMetricService metricService, IFocusService focusService, IGoalService goalService, ICommentService commentService, IUpdateService updateService, ISupportService supportService, IUserService userService, IGroupUserService groupUserService, IGroupService groupService, IGroupGoalService groupGoalService, IGroupUpdateService groupupdateService, IGroupCommentService groupcommentService, IFollowUserService followUserService, IGroupUpdateUserService groupUpdateUserService, IGroupCommentUserService groupCommentUserService, ICommentUserService commentUserService) { this.metricService = metricService; this.focusService = focusService; this.goalService = goalService; this.commentService = commentService; this.updateService = updateService; this.supportService = supportService; this.userService = userService; this.groupService = groupService; this.groupUserService = groupUserService; this.groupGoalService = groupGoalService; this.groupupdateService = groupupdateService; this.groupcommentService = groupcommentService; this.followUserService = followUserService; this.groupCommentUserService = groupCommentUserService; this.groupUpdateUserService = groupUpdateUserService; this.commentUserService = commentUserService; }
public GroupController(IGroupService groupService, IGroupUserService groupUserService, IUserService userService, IMetricService metricService, IFocusService focusService, IGroupGoalService groupgoalService, IGroupInvitationService groupInvitationService, ISecurityTokenService securityTokenService, IGroupUpdateService groupUpdateService, IGroupCommentService groupCommentService, IGoalStatusService goalStatusService, IGroupRequestService groupRequestService, IFollowUserService followUserService, IGroupCommentUserService groupCommentUserService, IGroupUpdateSupportService groupUpdateSupportService, IGroupUpdateUserService groupUpdateUserService) { this.groupService = groupService; this.groupInvitationService = groupInvitationService; this.userService = userService; this.groupUserService = groupUserService; this.metricService = metricService; this.focusService = focusService; this.groupGoalService = groupgoalService;; this.securityTokenService = securityTokenService; this.groupUpdateService = groupUpdateService; this.groupCommentService = groupCommentService; this.goalStatusService = goalStatusService; this.groupRequestService = groupRequestService; this.followUserService = followUserService; this.groupCommentUserService = groupCommentUserService; this.groupUpdateSupportService = groupUpdateSupportService; this.groupUpdateUserService = groupUpdateUserService; }
public GroupController(IGroupService groupService, IGroupUserService groupUserService, IUserService userService, IMetricService metricService, IFocusService focusService, IGroupGoalService groupgoalService, IGroupInvitationService groupInvitationService, ISecurityTokenService securityTokenService, IGroupUpdateService groupUpdateService, IGroupCommentService groupCommentService, IGoalStatusService goalStatusService, IGroupRequestService groupRequestService, IFollowUserService followUserService, IGroupCommentUserService groupCommentUserService, IGroupUpdateSupportService groupUpdateSupportService, IGroupUpdateUserService groupUpdateUserService) { this.groupService = groupService; this.groupInvitationService = groupInvitationService; this.userService = userService; this.groupUserService = groupUserService; this.metricService = metricService; this.focusService = focusService; this.groupGoalService = groupgoalService; ; this.securityTokenService = securityTokenService; this.groupUpdateService = groupUpdateService; this.groupCommentService = groupCommentService; this.goalStatusService = goalStatusService; this.groupRequestService = groupRequestService; this.followUserService = followUserService; this.groupCommentUserService = groupCommentUserService; this.groupUpdateSupportService = groupUpdateSupportService; this.groupUpdateUserService = groupUpdateUserService; }
public FocusController(IFocusStore focusStore, IFocusService focusService) { this.focusStore = focusStore; this.focusService = focusService; }
public LocationController(IDigitLogger logger, IFocusService focusService) { this.logger = logger; this.focusService = focusService; }
/// <summary> /// Creates a new FocusController with the given service. /// </summary> /// <param name="service">The service.</param> public FocusController(IFocusService service) { Contract.Requires(service != null, "The focus service must not be null."); this.service = service; }
public void SetUp() { goalRepository = new Mock<IGoalRepository>(); followuserRepository = new Mock<IFollowUserRepository>(); supportRepository = new Mock<ISupportRepository>(); goalStatusRepository = new Mock<IGoalStatusRepository>(); focusRepository = new Mock<IFocusRepository>(); metricRepository = new Mock<IMetricRepository>(); updateRepository = new Mock<IUpdateRepository>(); userRepository = new Mock<IUserRepository>(); supportrepository = new Mock<ISupportRepository>(); supportInvitationrepository = new Mock<ISupportInvitationRepository>(); commentRepository = new Mock<ICommentRepository>(); commentUserRepository = new Mock<ICommentUserRepository>(); securityTokenrepository = new Mock<ISecurityTokenRepository>(); userProfileRepository = new Mock<IUserProfileRepository>(); updateSupportRepository = new Mock<IUpdateSupportRepository>(); userMailer = new Mock<IUserMailer>(); userMailerMock = new Mock<UserMailer>(); mailerBase = new Mock<MailerBase>(); unitOfWork = new Mock<IUnitOfWork>(); goalService = new GoalService(goalRepository.Object, followuserRepository.Object, unitOfWork.Object); supportService = new SupportService(supportRepository.Object, followuserRepository.Object, unitOfWork.Object); goalStatusService = new GoalStatusService(goalStatusRepository.Object, unitOfWork.Object); focusService = new FocusService(focusRepository.Object, unitOfWork.Object); metricService = new MetricService(metricRepository.Object, unitOfWork.Object); updateService = new UpdateService(updateRepository.Object, goalRepository.Object, unitOfWork.Object, followuserRepository.Object); userService = new UserService(userRepository.Object, unitOfWork.Object, userProfileRepository.Object); supportService = new SupportService(supportrepository.Object, followuserRepository.Object, unitOfWork.Object); supportInvitationService = new SupportInvitationService(supportInvitationrepository.Object, unitOfWork.Object); commentService = new CommentService(commentRepository.Object, commentUserRepository.Object, unitOfWork.Object, followuserRepository.Object); commentUserService = new CommentUserService(commentUserRepository.Object, userRepository.Object, unitOfWork.Object); securityTokenService = new SecurityTokenService(securityTokenrepository.Object, unitOfWork.Object); userProfileService = new UserProfileService(userProfileRepository.Object, unitOfWork.Object); updateSupportService = new UpdateSupportService(updateSupportRepository.Object, unitOfWork.Object); MailerBase.IsTestModeEnabled = true; userMailerMock.CallBase = true; controllerContext = new Mock<ControllerContext>(); contextBase = new Mock<HttpContextBase>(); httpRequest = new Mock<HttpRequestBase>(); httpResponse = new Mock<HttpResponseBase>(); genericPrincipal = new Mock<GenericPrincipal>(); identity = new Mock<IIdentity>(); principal = new Mock<IPrincipal>(); }
public void SetUp() { groupRepository = new Mock<IGroupRepository>(); followUserRepository = new Mock<IFollowUserRepository>(); groupUserRepository = new Mock<IGroupUserRepository>(); focusRepository = new Mock<IFocusRepository>(); commentRepository = new Mock<ICommentRepository>(); groupGoalRepository = new Mock<IGroupGoalRepository>(); metricRepository = new Mock<IMetricRepository>(); userRepository = new Mock<IUserRepository>(); groupUdateRepository = new Mock<IGroupUpdateRepository>(); updateUserRepository = new Mock<IGroupUpdateUserRepository>(); groupCommentRepository = new Mock<IGroupCommentRepository>(); groupCommentUserRepository = new Mock<IGroupCommentUserRepository>(); groupInvitationRepository = new Mock<IGroupInvitationRepository>(); groupRequestRepository = new Mock<IGroupRequestRepository>(); goalStatusRepository = new Mock<IGoalStatusRepository>(); userProfileRepository = new Mock<IUserProfileRepository>(); groupUpdateSupportRepository = new Mock<IGroupUpdateSupportRepository>(); groupUpdateUserRepository = new Mock<IGroupUpdateUserRepository>(); unitOfWork = new Mock<IUnitOfWork>(); controllerContext = new Mock<ControllerContext>(); contextBase = new Mock<HttpContextBase>(); // httpContext = new Mock<HttpContext>(); httpRequest = new Mock<HttpRequestBase>(); httpResponse = new Mock<HttpResponseBase>(); genericPrincipal = new Mock<GenericPrincipal>(); identity = new Mock<IIdentity>(); principal = new Mock<IPrincipal>(); groupService = new GroupService(groupRepository.Object, followUserRepository.Object, groupUserRepository.Object, unitOfWork.Object); focusService = new FocusService(focusRepository.Object, unitOfWork.Object); metricService = new MetricService(metricRepository.Object, unitOfWork.Object); groupgoalService = new GroupGoalService(groupGoalRepository.Object, unitOfWork.Object); groupUserService = new GroupUserService(groupUserRepository.Object, userRepository.Object, unitOfWork.Object); groupUpdateService = new GroupUpdateService(groupUdateRepository.Object, updateUserRepository.Object, groupGoalRepository.Object, unitOfWork.Object); groupCommentService = new GroupCommentService(groupCommentRepository.Object, groupCommentUserRepository.Object, groupUdateRepository.Object, unitOfWork.Object); userService = new UserService(userRepository.Object, unitOfWork.Object, userProfileRepository.Object); groupInvitationService = new GroupInvitationService(groupInvitationRepository.Object, unitOfWork.Object); groupRequestService = new GroupRequestService(groupRequestRepository.Object, unitOfWork.Object); groupCommentUserService = new GroupCommentUserService(groupCommentUserRepository.Object, unitOfWork.Object, userRepository.Object); goalStatusService = new GoalStatusService(goalStatusRepository.Object, unitOfWork.Object); userProfileService = new UserProfileService(userProfileRepository.Object, unitOfWork.Object); groupUpdateSupportService = new GroupUpdateSupportService(groupUpdateSupportRepository.Object, unitOfWork.Object); groupUpdateUserService = new GroupUpdateUserService(groupUpdateUserRepository.Object, unitOfWork.Object, userRepository.Object); }