예제 #1
0
 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();
 }
예제 #2
0
 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();
 }
예제 #3
0
 public PrivacyService()
 {
     _friendService = new FriendService();
     _privacyRepository = new PrivacyRepository();
     _profileRepository = new ProfileRepository();
 }
예제 #4
0
 public PrivacyService()
 {
     _friendService     = new FriendService();
     _privacyRepository = new PrivacyRepository();
     _profileRepository = new ProfileRepository();
 }