コード例 #1
0
ファイル: ApiSerialiser.cs プロジェクト: Vespion/AquaShine
        /// <summary>
        /// Converts an attendee into an entrant. This method generates a unique ID for the entrant and should only be used once per attendee
        /// </summary>
        /// <param name="attendee"></param>
        /// <param name="generateId">Should an ID be generated for this entrant</param>
        /// <returns></returns>
        public Entrant ConvertEntrant(Attendee attendee, bool generateId = true)
        {
            if (attendee == null)
            {
                throw new ArgumentNullException(nameof(attendee));
            }
            var entrant = new Entrant
            {
                EventbriteId = attendee.Id,
                Address      = attendee.Profile !.Addresses !.Ship !,
                BioGender    = Enum.Parse <Gender>(attendee.Profile.Gender, true),
                Email        = attendee.Profile.Email !,
                Name         = attendee.Profile.Name !,
                PartitionKey = "A"
            };

            if (generateId)
            {
                entrant.RowKey = _idGenerator.NextId("entrantIds").ToString("X", new NumberFormatInfo());
            }
            return(entrant);
        }
    }