10 lines
215 B
C#
10 lines
215 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MinimalAPI.Services
|
|
{
|
|
public interface IComparisonService
|
|
{
|
|
Task<object> CompareProductsAsync(List<int> productIds);
|
|
}
|
|
} |