Files
laatzen/LaaProductionWeb/LaaProduction.Services/Interfaces/IReportService.cs
T

23 lines
725 B
C#

namespace LaaProduction.Services.Interfaces
{
using LaaProduction.Services.Models.Reports;
using System;
using System.Collections.Generic;
public interface IReportService
{
CordonelPressureSensorModel LoadCordonelPressureSensorReport(CordonelPressureSensorModel model = null);
HeliumReportModel LoadHeliumPressureReport(HeliumReportModel model = null);
IEnumerable<HeliumPressurePoint> LoadHeliumPressureResults(Int32 testId);
Byte[] LoadHeliumPressureReportAsCSV(HeliumReportModel model);
KottmannReportModel LoadKottmannPressureReport(KottmannReportModel model = null);
Byte[] LoadKottmannPressureReportAsCSV(KottmannReportModel model);
}
}