public async Task <KeyValuePair <string, IEnumerable <FileContent> > > CreatePartialViewPersonPhotos(string personId) { var person = await _mgrFcc.GetPerson(personId); return(new KeyValuePair <string, IEnumerable <FileContent> >(person.FileContentId, await _mgrFcc.GetAllPhotosByPersonId(personId))); }