public BandAlbumRepository(BandAlbumContext context, IPropertyMappingService propertyMappingService) { _context = context ?? throw new ArgumentNullException(nameof(context)); _propertyMappingService = propertyMappingService; }
public BandAlbumRepository(BandAlbumContext context) { _context = context ?? throw new ArgumentNullException(nameof(context)); }