### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations commentId: T:adas_core.Application.Services.Interfaces.ICalculatedObservations id: ICalculatedObservations parent: adas_core.Application.Services.Interfaces children: - adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation(System.Collections.Generic.List{adas_core.Domain.Models.Medicine},MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast(adas_core.Domain.Models.PatientObservation) - adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientDiagnosis) - adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientTreatment) - adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.Pumps.PumpObservation) - adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm(adas_core.Domain.Models.PatientObservation,adas_core.Domain.Models.PatientObservationAlarm) - adas_core.Application.Services.Interfaces.ICalculatedObservations.Map``1(``0,System.Boolean) - adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList(System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}) - adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm(adas_core.Domain.Models.PatientObservation,System.String,System.Nullable{adas_core.Domain.Enums.AlarmEnum.Name}) langs: - csharp - vb name: ICalculatedObservations nameWithType: ICalculatedObservations fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations type: Interface source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ICalculatedObservations path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 7 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces syntax: content: public interface ICalculatedObservations content.vb: Public Interface ICalculatedObservations derivedClasses: - adas_core.Application.Customizations.BD.CalculatedObservations - adas_core.Application.Customizations.CHUO.CalculatedObservations - adas_core.Application.Customizations.H12O.UCIN.CalculatedObservations - adas_core.Application.Customizations.HGM.CalculatedObservations - adas_core.Application.Customizations.HPAZ.CalculatedObservations - adas_core.Application.Customizations.HRYC.CalculatedObservations - adas_core.Application.Customizations.HUVH.UCIA.CalculatedObservations - adas_core.Application.Customizations.HUVH.UCIN.CalculatedObservations - adas_core.Application.Customizations.NursePlan.CalculatedObservations - adas_core.Application.Services.DefaultCalculatedObservations extensionMethods: - System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber - System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble - System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map``1(``0,System.Boolean) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.Map``1(``0,System.Boolean) id: Map``1(``0,System.Boolean) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: Map(T, bool) nameWithType: ICalculatedObservations.Map(T, bool) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(T, bool) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Map path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 15 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously maps a patient observation to a corresponding target type, optionally restricting the mapping to name-based matching only. example: [] syntax: content: 'Task Map(T obs, bool onlyByName = false) where T : BasePatientObservation' parameters: - id: obs type: '{T}' description: The source patient observation to be mapped. - id: onlyByName type: System.Boolean description: When set to true, the mapping is performed considering only the observation name; otherwise, additional mapping criteria are applied. Defaults to false. typeParameters: - id: T return: type: System.Threading.Tasks.Task{{T}} description: A that represents the asynchronous mapping operation. The result is the mapped observation of type T, or null when no matching mapping is found. content.vb: Function Map(Of T As BasePatientObservation)(obs As T, onlyByName As Boolean = False) As Task(Of T) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map* nameWithType.vb: ICalculatedObservations.Map(Of T)(T, Boolean) fullName.vb: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(Of T)(T, Boolean) name.vb: Map(Of T)(T, Boolean) - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientTreatment) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientTreatment) id: Map(adas_core.Domain.Models.PatientTreatment) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: Map(PatientTreatment) nameWithType: ICalculatedObservations.Map(PatientTreatment) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientTreatment) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Map path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 21 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously maps the specified treatment to a result. example: [] syntax: content: Task Map(PatientTreatment treatment) parameters: - id: treatment type: adas_core.Domain.Models.PatientTreatment description: The patient treatment instance to map. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.PatientTreatment} description: A task that represents the asynchronous mapping operation. The task result contains the mapped . content.vb: Function Map(treatment As PatientTreatment) As Task(Of PatientTreatment) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map* - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientDiagnosis) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientDiagnosis) id: Map(adas_core.Domain.Models.PatientDiagnosis) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: Map(PatientDiagnosis) nameWithType: ICalculatedObservations.Map(PatientDiagnosis) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.PatientDiagnosis) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Map path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 27 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously maps a to a representation. example: [] syntax: content: Task Map(PatientDiagnosis diagnosis) parameters: - id: diagnosis type: adas_core.Domain.Models.PatientDiagnosis description: The patient diagnosis to be mapped. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.PatientDiagnosis} description: A task that represents the asynchronous mapping operation, containing the mapped . content.vb: Function Map(diagnosis As PatientDiagnosis) As Task(Of PatientDiagnosis) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map* - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.Pumps.PumpObservation) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.Pumps.PumpObservation) id: Map(adas_core.Domain.Models.Pumps.PumpObservation) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: Map(PumpObservation) nameWithType: ICalculatedObservations.Map(PumpObservation) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map(adas_core.Domain.Models.Pumps.PumpObservation) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Map path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 34 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously maps the specified to a result. example: [] syntax: content: Task Map(PumpObservation pumpObservation) parameters: - id: pumpObservation type: adas_core.Domain.Models.Pumps.PumpObservation description: The to be mapped. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.Pumps.PumpObservation} description: A representing the asynchronous operation, containing the mapped . content.vb: Function Map(pumpObservation As PumpObservation) As Task(Of PumpObservation) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map* - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation(System.Collections.Generic.List{adas_core.Domain.Models.Medicine},MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation(System.Collections.Generic.List{adas_core.Domain.Models.Medicine},MongoDB.Bson.ObjectId) id: CalculateMedicineObservation(System.Collections.Generic.List{adas_core.Domain.Models.Medicine},MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: CalculateMedicineObservation(List, ObjectId) nameWithType: ICalculatedObservations.CalculateMedicineObservation(List, ObjectId) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation(System.Collections.Generic.List, MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: CalculateMedicineObservation path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 41 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously calculates a medicine observation for a patient based on their active medicines. example: [] syntax: content: Task CalculateMedicineObservation(List activeMedicines, ObjectId patientId) parameters: - id: activeMedicines type: System.Collections.Generic.List{adas_core.Domain.Models.Medicine} description: The list of medicines currently active for the patient. - id: patientId type: MongoDB.Bson.ObjectId description: The unique identifier of the patient whose observation is being calculated. return: type: System.Threading.Tasks.Task content.vb: Function CalculateMedicineObservation(activeMedicines As List(Of Medicine), patientId As ObjectId) As Task overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation* nameWithType.vb: ICalculatedObservations.CalculateMedicineObservation(List(Of Medicine), ObjectId) fullName.vb: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation(System.Collections.Generic.List(Of adas_core.Domain.Models.Medicine), MongoDB.Bson.ObjectId) name.vb: CalculateMedicineObservation(List(Of Medicine), ObjectId) - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus(MongoDB.Bson.ObjectId) id: CalculateActiveBolus(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: CalculateActiveBolus(ObjectId) nameWithType: ICalculatedObservations.CalculateActiveBolus(ObjectId) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: CalculateActiveBolus path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 47 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Calculates the active bolus for the specified patient. example: [] syntax: content: Task CalculateActiveBolus(ObjectId patientId) parameters: - id: patientId type: MongoDB.Bson.ObjectId description: The unique identifier of the patient whose active bolus is to be calculated. return: type: System.Threading.Tasks.Task content.vb: Function CalculateActiveBolus(patientId As ObjectId) As Task overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus* - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId) id: GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: GetActiveTreatmentsByPatient(ObjectId) nameWithType: ICalculatedObservations.GetActiveTreatmentsByPatient(ObjectId) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetActiveTreatmentsByPatient path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 54 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Retrieves the active treatments associated with a specific patient by their unique identifier. example: [] syntax: content: Task> GetActiveTreatmentsByPatient(ObjectId id) parameters: - id: id type: MongoDB.Bson.ObjectId description: The unique identifier of the patient whose active treatments are being queried. return: type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}} description: A task that represents the asynchronous operation, containing a collection of nullable entries that represent the active treatments for the specified patient. content.vb: Function GetActiveTreatmentsByPatient(id As ObjectId) As Task(Of IEnumerable(Of PatientTreatment)) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient* - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast(adas_core.Domain.Models.PatientObservation) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast(adas_core.Domain.Models.PatientObservation) id: FixTimeInconsistencyWithLast(adas_core.Domain.Models.PatientObservation) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: FixTimeInconsistencyWithLast(PatientObservation) nameWithType: ICalculatedObservations.FixTimeInconsistencyWithLast(PatientObservation) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast(adas_core.Domain.Models.PatientObservation) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FixTimeInconsistencyWithLast path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 61 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Resolves time inconsistencies between the new observation and the last stored observation, returning a corrected version when applicable. example: [] syntax: content: Task FixTimeInconsistencyWithLast(PatientObservation newObservation) parameters: - id: newObservation type: adas_core.Domain.Models.PatientObservation description: The new patient observation to validate and reconcile against the previous observation's time information. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.PatientObservation} description: A task that yields the fixed , or null when no time inconsistency is detected or no correction is required. content.vb: Function FixTimeInconsistencyWithLast(newObservation As PatientObservation) As Task(Of PatientObservation) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast* - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList(System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList(System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}) id: PreMapList(System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: PreMapList(List) nameWithType: ICalculatedObservations.PreMapList(List) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList(System.Collections.Generic.List) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: PreMapList path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 67 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Performs pre-insertion mapping on a list of patient observations, transforming or preparing the data before it is persisted. example: [] syntax: content: Task> PreMapList(List listToInsert) parameters: - id: listToInsert type: System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation} description: The list of patient observations to be pre-mapped prior to insertion. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}} description: A task that represents the asynchronous operation, containing the mapped list of patient observations. content.vb: Function PreMapList(listToInsert As List(Of PatientObservation)) As Task(Of List(Of PatientObservation)) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList* nameWithType.vb: ICalculatedObservations.PreMapList(List(Of PatientObservation)) fullName.vb: adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList(System.Collections.Generic.List(Of adas_core.Domain.Models.PatientObservation)) name.vb: PreMapList(List(Of PatientObservation)) - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm(adas_core.Domain.Models.PatientObservation,adas_core.Domain.Models.PatientObservationAlarm) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm(adas_core.Domain.Models.PatientObservation,adas_core.Domain.Models.PatientObservationAlarm) id: MapSourceAlarm(adas_core.Domain.Models.PatientObservation,adas_core.Domain.Models.PatientObservationAlarm) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: MapSourceAlarm(PatientObservation, PatientObservationAlarm) nameWithType: ICalculatedObservations.MapSourceAlarm(PatientObservation, PatientObservationAlarm) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm(adas_core.Domain.Models.PatientObservation, adas_core.Domain.Models.PatientObservationAlarm) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: MapSourceAlarm path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 74 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Maps the source alarm onto the specified patient observation and returns the resulting observation. example: [] syntax: content: Task MapSourceAlarm(PatientObservation obs, PatientObservationAlarm alarmToInsert) parameters: - id: obs type: adas_core.Domain.Models.PatientObservation description: The patient observation to which the source alarm will be mapped. - id: alarmToInsert type: adas_core.Domain.Models.PatientObservationAlarm description: The patient observation alarm to insert and map as the source alarm. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.PatientObservation} description: A task representing the asynchronous operation, containing the patient observation with the source alarm mapped. content.vb: Function MapSourceAlarm(obs As PatientObservation, alarmToInsert As PatientObservationAlarm) As Task(Of PatientObservation) overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm* - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm(adas_core.Domain.Models.PatientObservation,System.String,System.Nullable{adas_core.Domain.Enums.AlarmEnum.Name}) commentId: M:adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm(adas_core.Domain.Models.PatientObservation,System.String,System.Nullable{adas_core.Domain.Enums.AlarmEnum.Name}) id: SendAlarm(adas_core.Domain.Models.PatientObservation,System.String,System.Nullable{adas_core.Domain.Enums.AlarmEnum.Name}) parent: adas_core.Application.Services.Interfaces.ICalculatedObservations langs: - csharp - vb name: SendAlarm(PatientObservation, string, Name?) nameWithType: ICalculatedObservations.SendAlarm(PatientObservation, string, AlarmEnum.Name?) fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm(adas_core.Domain.Models.PatientObservation, string, adas_core.Domain.Enums.AlarmEnum.Name?) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ICalculatedObservations.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: SendAlarm path: ../../adas-core.Application/Services/Interfaces/ICalculatedObservations.cs startLine: 82 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Sends an alarm associated with the specified patient observation, optionally classified by an alarm code. example: [] syntax: content: Task SendAlarm(PatientObservation obs, string name, AlarmEnum.Name? code) parameters: - id: obs type: adas_core.Domain.Models.PatientObservation description: The patient observation that triggered the alarm. - id: name type: System.String description: The name associated with the alarm. - id: code type: System.Nullable{adas_core.Domain.Enums.AlarmEnum.Name} description: An optional alarm code categorizing the type of alarm to send. return: type: System.Threading.Tasks.Task content.vb: Function SendAlarm(obs As PatientObservation, name As String, code As AlarmEnum.Name?) As Task overload: adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm* nameWithType.vb: ICalculatedObservations.SendAlarm(PatientObservation, String, AlarmEnum.Name?) fullName.vb: adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm(adas_core.Domain.Models.PatientObservation, String, adas_core.Domain.Enums.AlarmEnum.Name?) name.vb: SendAlarm(PatientObservation, String, Name?) references: - uid: adas_core.Application.Services.Interfaces commentId: N:adas_core.Application.Services.Interfaces href: adas_core.html name: adas_core.Application.Services.Interfaces nameWithType: adas_core.Application.Services.Interfaces fullName: adas_core.Application.Services.Interfaces spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Application name: Application href: adas_core.Application.html - name: . - uid: adas_core.Application.Services name: Services href: adas_core.Application.Services.html - name: . - uid: adas_core.Application.Services.Interfaces name: Interfaces href: adas_core.Application.Services.Interfaces.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Application name: Application href: adas_core.Application.html - name: . - uid: adas_core.Application.Services name: Services href: adas_core.Application.Services.html - name: . - uid: adas_core.Application.Services.Interfaces name: Interfaces href: adas_core.Application.Services.Interfaces.html - uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) parent: adas_core.Domain.Utils.ObjectUtils definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils commentId: T:adas_core.Domain.Utils.NumberUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.NumberUtils.html name: NumberUtils nameWithType: NumberUtils fullName: adas_core.Domain.Utils.NumberUtils - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) isExternal: true href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils commentId: T:adas_core.Domain.Utils.ObjectUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.ObjectUtils.html name: ObjectUtils nameWithType: ObjectUtils fullName: adas_core.Domain.Utils.ObjectUtils - uid: adas_core.Domain.Utils commentId: N:adas_core.Domain.Utils href: adas_core.html name: adas_core.Domain.Utils nameWithType: adas_core.Domain.Utils fullName: adas_core.Domain.Utils spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html - uid: System.Threading.Tasks.Task`1 commentId: T:System.Threading.Tasks.Task`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task nameWithType: Task fullName: System.Threading.Tasks.Task nameWithType.vb: Task(Of TResult) fullName.vb: System.Threading.Tasks.Task(Of TResult) name.vb: Task(Of TResult) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - name: TResult - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - name: TResult - name: ) - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.Map href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_Map__1___0_System_Boolean_ name: Map nameWithType: ICalculatedObservations.Map fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.Map - uid: '{T}' commentId: '!:T' definition: T name: T nameWithType: T fullName: T - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: bool nameWithType: bool fullName: bool nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean - uid: System.Threading.Tasks.Task{{T}} commentId: T:System.Threading.Tasks.Task{``0} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task nameWithType: Task fullName: System.Threading.Tasks.Task nameWithType.vb: Task(Of T) fullName.vb: System.Threading.Tasks.Task(Of T) name.vb: Task(Of T) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: T name: T nameWithType: T fullName: T - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: System.Threading.Tasks commentId: N:System.Threading.Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Threading.Tasks nameWithType: System.Threading.Tasks fullName: System.Threading.Tasks spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Threading name: Threading isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading - name: . - uid: System.Threading.Tasks name: Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Threading name: Threading isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading - name: . - uid: System.Threading.Tasks name: Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks - uid: adas_core.Domain.Models.PatientTreatment commentId: T:adas_core.Domain.Models.PatientTreatment parent: adas_core.Domain.Models href: adas_core.Domain.Models.PatientTreatment.html name: PatientTreatment nameWithType: PatientTreatment fullName: adas_core.Domain.Models.PatientTreatment - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.PatientTreatment} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.PatientTreatment} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task nameWithType: Task fullName: System.Threading.Tasks.Task nameWithType.vb: Task(Of PatientTreatment) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.PatientTreatment) name.vb: Task(Of PatientTreatment) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - uid: adas_core.Domain.Models.PatientTreatment name: PatientTreatment - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.PatientTreatment name: PatientTreatment - name: ) - uid: adas_core.Domain.Models commentId: N:adas_core.Domain.Models href: adas_core.html name: adas_core.Domain.Models nameWithType: adas_core.Domain.Models fullName: adas_core.Domain.Models spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - uid: adas_core.Domain.Models.PatientDiagnosis commentId: T:adas_core.Domain.Models.PatientDiagnosis parent: adas_core.Domain.Models href: adas_core.Domain.Models.PatientDiagnosis.html name: PatientDiagnosis nameWithType: PatientDiagnosis fullName: adas_core.Domain.Models.PatientDiagnosis - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.PatientDiagnosis} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.PatientDiagnosis} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task nameWithType: Task fullName: System.Threading.Tasks.Task nameWithType.vb: Task(Of PatientDiagnosis) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.PatientDiagnosis) name.vb: Task(Of PatientDiagnosis) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - uid: adas_core.Domain.Models.PatientDiagnosis name: PatientDiagnosis - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.PatientDiagnosis name: PatientDiagnosis - name: ) - uid: adas_core.Domain.Models.Pumps.PumpObservation commentId: T:adas_core.Domain.Models.Pumps.PumpObservation parent: adas_core.Domain.Models.Pumps href: adas_core.Domain.Models.Pumps.PumpObservation.html name: PumpObservation nameWithType: PumpObservation fullName: adas_core.Domain.Models.Pumps.PumpObservation - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Pumps.PumpObservation} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Pumps.PumpObservation} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task nameWithType: Task fullName: System.Threading.Tasks.Task nameWithType.vb: Task(Of PumpObservation) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Pumps.PumpObservation) name.vb: Task(Of PumpObservation) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - uid: adas_core.Domain.Models.Pumps.PumpObservation name: PumpObservation - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.Pumps.PumpObservation name: PumpObservation - name: ) - uid: adas_core.Domain.Models.Pumps commentId: N:adas_core.Domain.Models.Pumps href: adas_core.html name: adas_core.Domain.Models.Pumps nameWithType: adas_core.Domain.Models.Pumps fullName: adas_core.Domain.Models.Pumps spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.Pumps name: Pumps href: adas_core.Domain.Models.Pumps.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.Pumps name: Pumps href: adas_core.Domain.Models.Pumps.html - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_CalculateMedicineObservation_System_Collections_Generic_List_adas_core_Domain_Models_Medicine__MongoDB_Bson_ObjectId_ name: CalculateMedicineObservation nameWithType: ICalculatedObservations.CalculateMedicineObservation fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateMedicineObservation - uid: System.Collections.Generic.List{adas_core.Domain.Models.Medicine} commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.Medicine} parent: System.Collections.Generic definition: System.Collections.Generic.List`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of Medicine) fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.Medicine) name.vb: List(Of Medicine) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: adas_core.Domain.Models.Medicine name: Medicine - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.Medicine name: Medicine - name: ) - uid: MongoDB.Bson.ObjectId commentId: T:MongoDB.Bson.ObjectId parent: MongoDB.Bson isExternal: true name: ObjectId nameWithType: ObjectId fullName: MongoDB.Bson.ObjectId - uid: System.Threading.Tasks.Task commentId: T:System.Threading.Tasks.Task parent: System.Threading.Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task name: Task nameWithType: Task fullName: System.Threading.Tasks.Task - uid: System.Collections.Generic.List`1 commentId: T:System.Collections.Generic.List`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of T) fullName.vb: System.Collections.Generic.List(Of T) name.vb: List(Of T) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic commentId: N:System.Collections.Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections.Generic nameWithType: System.Collections.Generic fullName: System.Collections.Generic spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic - uid: MongoDB.Bson commentId: N:MongoDB.Bson isExternal: true name: MongoDB.Bson nameWithType: MongoDB.Bson fullName: MongoDB.Bson spec.csharp: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true spec.vb: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_CalculateActiveBolus_MongoDB_Bson_ObjectId_ name: CalculateActiveBolus nameWithType: ICalculatedObservations.CalculateActiveBolus fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.CalculateActiveBolus - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_GetActiveTreatmentsByPatient_MongoDB_Bson_ObjectId_ name: GetActiveTreatmentsByPatient nameWithType: ICalculatedObservations.GetActiveTreatmentsByPatient fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.GetActiveTreatmentsByPatient - uid: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task> nameWithType: Task> fullName: System.Threading.Tasks.Task> nameWithType.vb: Task(Of IEnumerable(Of PatientTreatment)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.PatientTreatment)) name.vb: Task(Of IEnumerable(Of PatientTreatment)) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - uid: adas_core.Domain.Models.PatientTreatment name: PatientTreatment - name: '>' - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.PatientTreatment name: PatientTreatment - name: ) - name: ) - uid: adas_core.Domain.Models.PatientObservation commentId: T:adas_core.Domain.Models.PatientObservation parent: adas_core.Domain.Models href: adas_core.Domain.Models.PatientObservation.html name: PatientObservation nameWithType: PatientObservation fullName: adas_core.Domain.Models.PatientObservation - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_FixTimeInconsistencyWithLast_adas_core_Domain_Models_PatientObservation_ name: FixTimeInconsistencyWithLast nameWithType: ICalculatedObservations.FixTimeInconsistencyWithLast fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.FixTimeInconsistencyWithLast - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.PatientObservation} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.PatientObservation} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task nameWithType: Task fullName: System.Threading.Tasks.Task nameWithType.vb: Task(Of PatientObservation) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.PatientObservation) name.vb: Task(Of PatientObservation) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - uid: adas_core.Domain.Models.PatientObservation name: PatientObservation - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.PatientObservation name: PatientObservation - name: ) - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_PreMapList_System_Collections_Generic_List_adas_core_Domain_Models_PatientObservation__ name: PreMapList nameWithType: ICalculatedObservations.PreMapList fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.PreMapList - uid: System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation} commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation} parent: System.Collections.Generic definition: System.Collections.Generic.List`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of PatientObservation) fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.PatientObservation) name.vb: List(Of PatientObservation) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: adas_core.Domain.Models.PatientObservation name: PatientObservation href: adas_core.Domain.Models.PatientObservation.html - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.PatientObservation name: PatientObservation href: adas_core.Domain.Models.PatientObservation.html - name: ) - uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task> nameWithType: Task> fullName: System.Threading.Tasks.Task> nameWithType.vb: Task(Of List(Of PatientObservation)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.PatientObservation)) name.vb: Task(Of List(Of PatientObservation)) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: adas_core.Domain.Models.PatientObservation name: PatientObservation - name: '>' - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.PatientObservation name: PatientObservation - name: ) - name: ) - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_MapSourceAlarm_adas_core_Domain_Models_PatientObservation_adas_core_Domain_Models_PatientObservationAlarm_ name: MapSourceAlarm nameWithType: ICalculatedObservations.MapSourceAlarm fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.MapSourceAlarm - uid: adas_core.Domain.Models.PatientObservationAlarm commentId: T:adas_core.Domain.Models.PatientObservationAlarm parent: adas_core.Domain.Models href: adas_core.Domain.Models.PatientObservationAlarm.html name: PatientObservationAlarm nameWithType: PatientObservationAlarm fullName: adas_core.Domain.Models.PatientObservationAlarm - uid: adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm* commentId: Overload:adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm href: adas_core.Application.Services.Interfaces.ICalculatedObservations.html#adas_core_Application_Services_Interfaces_ICalculatedObservations_SendAlarm_adas_core_Domain_Models_PatientObservation_System_String_System_Nullable_adas_core_Domain_Enums_AlarmEnum_Name__ name: SendAlarm nameWithType: ICalculatedObservations.SendAlarm fullName: adas_core.Application.Services.Interfaces.ICalculatedObservations.SendAlarm - uid: System.String commentId: T:System.String parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: string nameWithType: string fullName: string nameWithType.vb: String fullName.vb: String name.vb: String - uid: System.Nullable{adas_core.Domain.Enums.AlarmEnum.Name} commentId: T:System.Nullable{adas_core.Domain.Enums.AlarmEnum.Name} parent: System definition: System.Nullable`1 name: AlarmEnum.Name? nameWithType: AlarmEnum.Name? fullName: adas_core.Domain.Enums.AlarmEnum.Name? spec.csharp: - uid: adas_core.Domain.Enums.AlarmEnum name: AlarmEnum - name: . - uid: adas_core.Domain.Enums.AlarmEnum.Name name: Name - name: '?' spec.vb: - uid: adas_core.Domain.Enums.AlarmEnum name: AlarmEnum - name: . - uid: adas_core.Domain.Enums.AlarmEnum.Name name: Name - name: '?' - uid: System.Nullable`1 commentId: T:System.Nullable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 name: Nullable nameWithType: Nullable fullName: System.Nullable nameWithType.vb: Nullable(Of T) fullName.vb: System.Nullable(Of T) name.vb: Nullable(Of T) spec.csharp: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: ( - name: Of - name: " " - name: T - name: )