public async Task <ICollection <Photo> > GetFilterPhotos(string name, string type, string eventName, string place, string person) { var photos = await wcfService.GetFilterPhotosAsync(name, type, eventName, place, person); return(photos.Select(x => mapper.Map <Photo>(x)).ToList()); }