Askme.Domain.QuestionVote.NegativeVote C# (CSharp) Méthode

NegativeVote() public static méthode

public static NegativeVote ( User user ) : QuestionVote
user User
Résultat QuestionVote
        public static QuestionVote NegativeVote(User user)
        {
            var vote = new QuestionVote(user, NegativeValue);
            return vote;
        }