using System.Threading.Tasks; using AciTester.Models; namespace AciTester.Services { public interface IReportService { Task GenerateReportAsync(TestResult result, string filePath); } }