using System.Collections.Generic; using System.Threading.Tasks; using Sony.Filtr.Contracts.Definitions; using Sony.Filtr.Contracts.Entities; namespace Sony.Filtr.Contracts.Abstractions { public interface ISonyMusicManager { Task> IsSonyTracksAsync(List ISRCs, string market = null); Task> GetSonyTrackMarketsAsync(List ISRCs); Task> IsSonyAlbumAsync(List UPCs, MusicService? musicService = null, string market = null); Task> GetSonyAlbumAsync(IEnumerable UPCs, MusicService musicService, string market); } }