예제 #1
0
파일: Idea.cs 프로젝트: rhwy/SampArch
 public Idea()
 {
     Votes = new Vote();
     Comments = new HashSet<Comment>();
     Tags = new HashSet<Tag>();
     CreationDate = DateTime.Now;
 }
예제 #2
0
 public VoteTableEntity(Vote vote)
 {
     RowKey = vote.Id.ToString();
     PartitionKey = "Votes";
     Up = vote.Up;
     Down = vote.Down;
 }