Example #1
0
        public int Compare(GuestVM x, GuestVM y)
        {
            if (x == null || y == null)
            {
                return(0);
            }

            return(x.Name.CompareTo(y.Name));
        }
Example #2
0
 public GuestHandler(GuestVM guestVm)
 {
     _guestVm  = guestVm;
     _consumer = _guestVm.ConsumerGuest;
 }