예제 #1
0
        public void LikeDocument(UserInterest interest, FeedItem document)
        {
            UserInterestRepository uiRep = new UserInterestRepository();

            interest.AddDocument(document);
            uiRep.Update(interest);
        }
예제 #2
0
        public void UpdateUser(UserInterest interest)
        {
            UserInterestRepository uiRep = new UserInterestRepository();

            uiRep.Update(interest);
        }