public PartialViewResult AnalyseAssetsForDeltas(string rawAssets) { string publicID = EstadoUsuario.CurrentListPublicId; AgenteShoppingList agente = new AgenteShoppingList(); IEnumerable <AssetImported> assets = agente.ImportAssetsForListDelta(publicID, rawAssets); EDPVImportAssetsForDelta edv = new EDPVImportAssetsForDelta() { Assets = assets }; return(PartialView("PVAnalyseAssetsForDeltas", edv)); }