public void RateSession(SessionAttendee s)
 {
 }
Beispiel #2
0
 public static SessionAttendee Map(this Data.SessionAttendee s)
 {
     SessionAttendee attendee = new SessionAttendee()
     {
         ID = s.ID,
         SpeakerName = string.Format("{0} {1}", s.Session.Speaker.FirstName, s.Session.Speaker.LastName),
         SessionName = s.Session.Name,
         SessionRating = s.SessionRating,
         SpeakerRating = s.SpeakerRating,
         Comment = s.Comment
     };
     return attendee;
 }