Esempio n. 1
0
        public bool UnFollow(ApplicationUser user)
        {
            int count     = Followees.Count;
            var following = Followees.SingleOrDefault(f => f.FolloweeID == user.Id);

            if (following == null)
            {
                return(false);
            }

            Followees.Remove(following);

            return(true);
        }