private void Construct(INavigationService navigationService,
                        RewardParticleSystemFactory rewardParticleSystemFactory,
                        IBadgeService badgeService)
 {
     m_NavigationService           = navigationService;
     m_BadgeService                = badgeService;
     m_RewardParticleSystemFactory = rewardParticleSystemFactory;
 }
 private void Construct(INavigationService navigationService,
                        RewardParticleSystemFactory rewardParticleSystemFactory,
                        IUserProfile userProfile)
 {
     m_NavigationService           = navigationService;
     m_RewardParticleSystemFactory = rewardParticleSystemFactory;
     m_UserProfile = userProfile;
 }