Files
it/MinimalAPI/Services/IComparisonService.cs

10 lines
215 B
C#
Raw Normal View History

2025-11-03 17:03:57 +08:00
using System.Collections.Generic;
using System.Threading.Tasks;
namespace MinimalAPI.Services
{
public interface IComparisonService
{
Task<object> CompareProductsAsync(List<int> productIds);
}
}