Example #1
0
        public async Task AddEventSwipeHistory(Guid personUid, Guid eventUid)
        {
            var eventEntity = await _eventRepository.GetPureEvent(eventUid);

            var personEntity = await _personRepository.GetPerson(personUid);

            await _eventRepository.AddEventSwipeHistoryRecord(new EventSwipeHistoryEntity { EventId = eventEntity.EventId, PersonId = personEntity.PersonId });
        }