Refactor to guid uid

This commit is contained in:
Fergal Moran
2018-05-11 20:24:11 +01:00
parent 5f905d3516
commit d5c9df78cb
31 changed files with 476 additions and 358 deletions

View File

@@ -32,7 +32,7 @@ namespace PodNoms.Api.Controllers {
PodcastId = entry.PodcastId,
SourceUrl = entry.SourceUrl
};
await _playlistRepository.AddOrUpdateAsync(playlist);
_playlistRepository.AddOrUpdate(playlist);
await _unitOfWork.CompleteAsync();
return Ok(playlist);
}