using System.Collections.Generic; using System.Threading.Tasks; namespace MinimalAPI.Services { public interface IComparisonService { Task CompareProductsAsync(List productIds); } }