in src/Shared/Infrastructure/Infrastructure.Persistence/Repositories/MeetingRepository.cs [45:52]
public void Save(string token, IEnumerable<MeetingContact> contacts)
{
var meetings = contacts.Select(contact => contact.ToMeeting(token));
foreach (var meeting in meetings)
{
mapper.Insert<Meeting>(meeting);
}
}