コード例 #1
0
ファイル: Rsvp.cs プロジェクト: dpoindexter/wedding-rsvp
 public RsvpViewModel(Rsvp rsvp)
 {
     this.Id               = rsvp.Id;
     this.Primary          = new GuestViewModel(rsvp.Primary);
     this.PlusOne          = new GuestViewModel(rsvp.PlusOne);
     this.IsAllowedPlusOne = rsvp.IsAllowedPlusOne;
     this.IsGuestPrefilled = rsvp.IsGuestPrefilled;
     this.Message          = rsvp.Message;
 }
コード例 #2
0
ファイル: Rsvp.cs プロジェクト: dpoindexter/wedding-rsvp
 public RsvpJsonModel(Rsvp rsvp)
     : this(new RsvpViewModel(rsvp))
 {
 }