Example #1
0
        public UserProfileController()
        {
            _profileManager       = new ProfileManager();
            _friendRequestManager = new FriendRequestManager();
            _friendProfileManager = new FriendProfileManager();

            _profilePostManager = new ProfilePostManager();
        }
 public ProfileController()
 {
     _profileManager        = new ProfileManager();
     _hobbieManager         = new HobbieManager();
     _friendRequestManager  = new FriendRequestManager();
     _friendProfileManager  = new FriendProfileManager();
     _visitorProfileManager = new VisitorProfileManager();
     _profilePostManager    = new ProfilePostManager();
 }
 public PostApiController()
 {
     _profileManager     = new ProfileManager();
     _profilePostManager = new ProfilePostManager();
 }