Helper class for getting check-in configuratoin settings from the group type
Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RegistrationSettings"/> class.
 /// </summary>
 /// <param name="checkinType">Type of the checkin.</param>
 public RegistrationSettings(CheckinType checkinType)
 {
     _checkinType = checkinType;
 }
Example #2
0
        public static CheckinStatus GetCheckinStatus(KioskDevice kiosk, List <int> configuredGroupTypeIds, CheckinType checkInType)
        {
            var checkinState = new CheckInState(kiosk.Device?.Id ?? 0, checkInType.Id, configuredGroupTypeIds);

            return(GetCheckinStatus(checkinState));
        }