private static TalkRehearsal Convert(Domain.Drafts.TalkRehearsal source)
 {
     return(new TalkRehearsal(source.Id, DateTimeOffset.UtcNow)
     {
         Comment = source.Comment
     });
 }
Ejemplo n.º 2
0
 private static TalkRehearsal Convert(Domain.Drafts.TalkRehearsal source)
 {
     return(new TalkRehearsal(source.Id)
     {
         Comment = source.Comment
     });
 }