Files
GSS2Rework/GSS2.Core/Analysis/AmineContent/AmineContentResultsDataService.cs
T

23 lines
707 B
C#

using GSS2.Core.Analysis.AmineContent.Database;
using GSS2.Core.Analysis.AmineContent.Database.Calibration;
using Microsoft.Extensions.Logging;
namespace GSS2.Core.Analysis.AmineContent;
public class AmineContentResultsDataService
{
private readonly ILogger<AmineContentResultsDataService> _logger;
private AmineContentCalibrationContext _calibrationContext;
public AmineContentResultsDataService(ILogger<AmineContentResultsDataService> logger, AmineContentCalibrationContext calibrationContext)
{
_logger = logger;
_calibrationContext = calibrationContext;
}
public async Task LoadData(CancellationToken cancellationToken = default)
{
//TODO
}
}