2011-02-09 00:05:32 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Portoa.Persistence;
|
|
|
|
|
|
|
|
|
|
namespace VideoGameQuotes.Api {
|
|
|
|
|
public class Vote : Entity<Vote, int> {
|
2011-02-14 07:39:45 +00:00
|
|
|
|
public Vote() {
|
|
|
|
|
Created = DateTime.UtcNow;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 00:05:32 +00:00
|
|
|
|
public virtual User Voter { get; set; }
|
|
|
|
|
public virtual Quote Quote { get; set; }
|
|
|
|
|
public virtual DateTime Created { get; set; }
|
2011-02-10 20:34:55 +00:00
|
|
|
|
public virtual VoteDirection Direction { get; set; }
|
2011-02-09 00:05:32 +00:00
|
|
|
|
|
|
|
|
|
public static explicit operator int(Vote vote) {
|
2011-02-10 20:34:55 +00:00
|
|
|
|
return vote.Direction == VoteDirection.Up ? 1 : -1;
|
2011-02-09 00:05:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|