public ManageProfilePresenter() { _levelOfExperienceRepository = new LevelOfExperienceRepository(); _profileAttributeRepository = new ProfileAttributeRepository(); _profileRepository = new ProfileRepository(); _userSession = new UserSession(); _profileService = new ProfileService(); _profileAttributeService = new ProfileAttributeService(); _redirector = new Redirector(); _listProfileAttributeType = new List <ProfileAttributeType>(); _listPrivacyFlags = new List <PrivacyFlag>(); _privacyRepository = new PrivacyRepository(); _listVisibilityLevel = new List <VisibilityLevel>(); profile = new Profile(); }
public ManageProfilePresenter() { _levelOfExperienceRepository = new LevelOfExperienceRepository(); _profileAttributeRepository = new ProfileAttributeRepository(); _profileRepository = new ProfileRepository(); _userSession = new UserSession(); _profileService = new ProfileService(); _profileAttributeService = new ProfileAttributeService(); _redirector = new Redirector(); _listProfileAttributeType = new List<ProfileAttributeType>(); _listPrivacyFlags = new List<PrivacyFlag>(); _privacyRepository = new PrivacyRepository(); _listVisibilityLevel = new List<VisibilityLevel>(); profile = new Profile(); }
public PrivacyService() { _friendService = new FriendService(); _privacyRepository = new PrivacyRepository(); _profileRepository = new ProfileRepository(); }