Skip to content

Commit

Permalink
Address SonarCloud analysis comments
Browse files Browse the repository at this point in the history
  • Loading branch information
davewalker5 committed Oct 3, 2023
1 parent ea6875d commit a0a5873
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ namespace MusicCatalogue.Entities.Interfaces
{
public interface IAlbumLookupManager
{
Task<Album?> LookupAlbum(string artist, string title);
Task<Album?> LookupAlbum(string artistName, string albumTitle);
}
}
2 changes: 1 addition & 1 deletion src/MusicCatalogue.Logic/Database/DatabaseManagerBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public abstract class DatabaseManagerBase
protected readonly TextInfo _textInfo = new CultureInfo("en-GB", false).TextInfo;
protected readonly MusicCatalogueDbContext _context;

public DatabaseManagerBase(MusicCatalogueDbContext context)
protected DatabaseManagerBase(MusicCatalogueDbContext context)
{
_context = context;
}
Expand Down

0 comments on commit a0a5873

Please sign in to comment.