public int Compare(GuestVM x, GuestVM y) { if (x == null || y == null) { return(0); } return(x.Name.CompareTo(y.Name)); }
public GuestHandler(GuestVM guestVm) { _guestVm = guestVm; _consumer = _guestVm.ConsumerGuest; }