forked from amkovkov/GranuSightSoftware2
feat: migrations update
Added tool for migrations Updated AmineContentCalibration db Create AmineContentResults db
This commit is contained in:
@@ -1,6 +1,21 @@
|
||||
using GSS2.Core.Analysis.AmineContent.Database;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace GSS2.Core.Analysis.AmineContent;
|
||||
|
||||
public class AmineContentCalibrationDataService
|
||||
{
|
||||
|
||||
private readonly ILogger<AmineContentCalibrationDataService> _logger;
|
||||
private AmineContentCalibrationContext _calibrationContext;
|
||||
|
||||
public AmineContentCalibrationDataService(ILogger<AmineContentCalibrationDataService> logger, AmineContentCalibrationContext calibrationContext)
|
||||
{
|
||||
_logger = logger;
|
||||
_calibrationContext = calibrationContext;
|
||||
}
|
||||
|
||||
public async Task LoadData(CancellationToken cancellationToken = default)
|
||||
{
|
||||
//TODO
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user