80 lines
2.3 KiB
C#
80 lines
2.3 KiB
C#
using adas_core.Application.Services.Interfaces;
|
|
using adas_core.Domain.Enums;
|
|
using adas_core.Domain.Models;
|
|
using adas_core.Domain.Models.Pumps;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using MongoDB.Bson;
|
|
|
|
namespace adas_core.Application.Customizations.CHUO;
|
|
|
|
public class CalculatedObservations(IServiceProvider serviceProvider) : ICalculatedObservations
|
|
{
|
|
private readonly ILogger<CalculatedObservations> _logger =
|
|
serviceProvider.GetRequiredService<ILogger<CalculatedObservations>>();
|
|
|
|
public Task CalculateActiveBolus(ObjectId patientId)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public async Task<PumpObservation> Map(PumpObservation pumpObservation)
|
|
{
|
|
return await Task.FromResult(pumpObservation);
|
|
}
|
|
|
|
public Task CalculateMedicineObservation(List<Medicine> activeMedicines, ObjectId patientId)
|
|
{
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
public Task<PatientObservation?> FixTimeInconsistencyWithLast(PatientObservation newObservation)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<IEnumerable<PatientTreatment?>> GetActiveTreatmentsByPatient(ObjectId id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<T?> Map<T>(T obs, bool onlyByName = false) where T : BasePatientObservation
|
|
{
|
|
_logger.LogTrace("Mapping {name} observation {obs}", obs.Name, obs);
|
|
|
|
return Task.FromResult<T?>(obs);
|
|
}
|
|
|
|
|
|
public Task<PatientTreatment> Map(PatientTreatment treatment)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<PatientDiagnosis> Map(PatientDiagnosis diagnosis)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<List<PatientObservation>> PreMapList(List<PatientObservation> listToInsert)
|
|
{
|
|
return Task.FromResult(listToInsert);
|
|
}
|
|
|
|
public Task<PatientObservation> MapSourceAlarm(PatientObservation obs, PatientObservationAlarm alarmToInsert)
|
|
{
|
|
return Task.FromResult(obs);
|
|
}
|
|
|
|
public Task SendAlarm(PatientObservation obs, string name, AlarmEnum.Name? code)
|
|
{
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
//public Task<List<PatientObservation>> MapList(List<PatientObservation> obsToInsert)
|
|
//{
|
|
// throw new NotImplementedException();
|
|
//}
|
|
} |