public AlbumFunctions(IAlbumRepository albumRepository, IMapper mapper, IODataQueryMapper odataMapper) { this.albumRepository = albumRepository; this.mapper = mapper; this.odataMapper = odataMapper; }
public ArtistFunctions(IArtistRepository artistRepository, IMapper mapper, IODataQueryMapper odataMapper) { this.artistRepository = artistRepository; this.mapper = mapper; this.odataMapper = odataMapper; }
public TrackFunctions(ITrackRepository trackRepository, IMapper mapper, IODataQueryMapper odataMapper) { this.trackRepository = trackRepository; this.mapper = mapper; this.odataMapper = odataMapper; }