20 lines
611 B
C#
20 lines
611 B
C#
namespace LaaProductionWeb.Services.Interfaces
|
|
{
|
|
using LaaProductionWeb.Services.Models.Reports;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
public interface IReportService : ITransient
|
|
{
|
|
HeliumReportModel LoadHeliumPressureReport(HeliumReportModel model = null);
|
|
|
|
IEnumerable<HeliumPressurePoint> LoadHeliumPressureResults(int testId);
|
|
|
|
byte[] LoadHeliumPressureReportAsCSV(HeliumReportModel model);
|
|
|
|
KottmannReportModel LoadKottmannPressureReport(KottmannReportModel model = null);
|
|
|
|
byte[] LoadKottmannPressureReportAsCSV(KottmannReportModel model);
|
|
}
|
|
}
|