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