예제 #1
0
        public async Task WhenICreateTheNotificationsWithTheFollowingInformations(Table table)
        {
            var dtos = table.CreateSet <CreateANotificationDto>();

            foreach (var dto in dtos)
            {
                _notificationContext.CreatedResource = await _notificationsApi.Create(dto);
            }
        }