using System.Collections.Generic; using System.Threading.Tasks; using Sony.Filtr.Contracts.Entities.Buzz; namespace Sony.Filtr.Contracts.Abstractions { public interface IBuzzAccountManager { Task> GetBuzzUsersAsync(int? buzzCategoryId = null, int? musicServiceId = null); } }