Ejemplo n.º 1
0
        public void InsertPhotos(int eventId, List <string> photoNames)
        {
            var photoList = GetPhotoList(eventId, photoNames);

            foreach (var photo in photoList)
            {
                _photosRepository.Insert(photo);
            }
        }