コード例 #1
0
 public bool IsViewModelOf(Seat seat)
 {
     return(seat.Equals(_seat));
 }
コード例 #2
0
 public SeatViewModel(Seat seat)
 {
     LoadFrom(seat);
 }
コード例 #3
0
 public void LoadFrom(Seat seat)
 {
     _seat = seat;
 }
コード例 #4
0
 public void RemoveSeat(Seat seat)
 {
     Seats.Remove(seat);
 }