예제 #1
0
        protected virtual IQueryable <FriendVote> GetFriendsVotesCollection(FriendVote human, int friendId)
        {
            Dictionary <VoteUser, Dictionary <VoteUser, FriendVote> > result = new Dictionary <VoteUser, Dictionary <VoteUser, FriendVote> >();

            //dal
            return(Dal.Select((model, id) => (human.IdVoteUsers == friendId)));
        }
예제 #2
0
        public virtual Dictionary <VoteUser, Dictionary <VoteUser, FriendVote> > GetFriendsVotes(FriendVote human, int friendId)
        {
            Dictionary <VoteUser, Dictionary <VoteUser, FriendVote> > result = new Dictionary <VoteUser, Dictionary <VoteUser, FriendVote> >();

            //bll
            //GetFriendsVotesCollection

            // ??
            return(result);
        }