### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.ObservationDemoService commentId: T:adas_core.Application.Services.ObservationDemoService id: ObservationDemoService parent: adas_core.Application.Services children: - adas_core.Application.Services.ObservationDemoService.#ctor(adas_core.Application.Services.Interfaces.IConfigObservationService,System.Lazy{adas_core.Application.Services.Interfaces.IAlarmService}) - adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) - adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) - adas_core.Application.Services.ObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) langs: - csharp - vb name: ObservationDemoService nameWithType: ObservationDemoService fullName: adas_core.Application.Services.ObservationDemoService type: Class source: remote: path: adas-core.Application/Services/ObservationDemoService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ObservationDemoService path: ../../adas-core.Application/Services/ObservationDemoService.cs startLine: 10 assemblies: - adas-core.Application namespace: adas_core.Application.Services syntax: content: 'public class ObservationDemoService : IObservationDemoService' content.vb: Public Class ObservationDemoService Implements IObservationDemoService inheritance: - System.Object implements: - adas_core.Application.Services.Interfaces.IObservationDemoService inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString 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.ObservationDemoService.#ctor(adas_core.Application.Services.Interfaces.IConfigObservationService,System.Lazy{adas_core.Application.Services.Interfaces.IAlarmService}) commentId: M:adas_core.Application.Services.ObservationDemoService.#ctor(adas_core.Application.Services.Interfaces.IConfigObservationService,System.Lazy{adas_core.Application.Services.Interfaces.IAlarmService}) id: '#ctor(adas_core.Application.Services.Interfaces.IConfigObservationService,System.Lazy{adas_core.Application.Services.Interfaces.IAlarmService})' parent: adas_core.Application.Services.ObservationDemoService langs: - csharp - vb name: ObservationDemoService(IConfigObservationService, Lazy) nameWithType: ObservationDemoService.ObservationDemoService(IConfigObservationService, Lazy) fullName: adas_core.Application.Services.ObservationDemoService.ObservationDemoService(adas_core.Application.Services.Interfaces.IConfigObservationService, System.Lazy) type: Constructor source: remote: path: adas-core.Application/Services/ObservationDemoService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: .ctor path: ../../adas-core.Application/Services/ObservationDemoService.cs startLine: 10 assemblies: - adas-core.Application namespace: adas_core.Application.Services syntax: content: public ObservationDemoService(IConfigObservationService configObservationService, Lazy alarmService) parameters: - id: configObservationService type: adas_core.Application.Services.Interfaces.IConfigObservationService - id: alarmService type: System.Lazy{adas_core.Application.Services.Interfaces.IAlarmService} content.vb: Public Sub New(configObservationService As IConfigObservationService, alarmService As Lazy(Of IAlarmService)) overload: adas_core.Application.Services.ObservationDemoService.#ctor* nameWithType.vb: ObservationDemoService.New(IConfigObservationService, Lazy(Of IAlarmService)) fullName.vb: adas_core.Application.Services.ObservationDemoService.New(adas_core.Application.Services.Interfaces.IConfigObservationService, System.Lazy(Of adas_core.Application.Services.Interfaces.IAlarmService)) name.vb: New(IConfigObservationService, Lazy(Of IAlarmService)) - uid: adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) commentId: M:adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) id: GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) parent: adas_core.Application.Services.ObservationDemoService langs: - csharp - vb name: GenerateAlarmByField(Patient, List) nameWithType: ObservationDemoService.GenerateAlarmByField(Patient, List) fullName: adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List) type: Method source: remote: path: adas-core.Application/Services/ObservationDemoService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GenerateAlarmByField path: ../../adas-core.Application/Services/ObservationDemoService.cs startLine: 21 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Generates a list of patient observation alarms based on the provided alarm fields, randomly skipping fields and skipping those with no matching configuration. example: [] syntax: content: public Task> GenerateAlarmByField(Patient patient, List dataAlarmfields) parameters: - id: patient type: adas_core.Domain.Models.MongoModels.Patient description: The patient to associate with the generated alarms. - id: dataAlarmfields type: System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field} description: The list of fields used to look up alarm configurations and produce alarms. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservationAlarm}} description: A task that represents the asynchronous operation, containing the list of mapped instances that were successfully resolved. content.vb: Public Function GenerateAlarmByField(patient As Patient, dataAlarmfields As List(Of Field)) As Task(Of List(Of PatientObservationAlarm)) overload: adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField* implements: - adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) nameWithType.vb: ObservationDemoService.GenerateAlarmByField(Patient, List(Of Field)) fullName.vb: adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List(Of adas_core.Domain.Models.GroupedObservations.Field)) name.vb: GenerateAlarmByField(Patient, List(Of Field)) - uid: adas_core.Application.Services.ObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) commentId: M:adas_core.Application.Services.ObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) id: GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) parent: adas_core.Application.Services.ObservationDemoService langs: - csharp - vb name: GenerateObservationByField(Patient, List) nameWithType: ObservationDemoService.GenerateObservationByField(Patient, List) fullName: adas_core.Application.Services.ObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List) type: Method source: remote: path: adas-core.Application/Services/ObservationDemoService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GenerateObservationByField path: ../../adas-core.Application/Services/ObservationDemoService.cs startLine: 82 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Generates a list of patient observations for the specified patient based on the provided data fields, using the corresponding configuration items to populate observation values, thresholds, and metadata. Fields without a name or without a matching configuration are skipped. When a configuration includes demo settings, the resulting observation is adjusted with a randomized initial date and, if required, an end time. example: [] syntax: content: public Task> GenerateObservationByField(Patient patient, List dataFields) parameters: - id: patient type: adas_core.Domain.Models.MongoModels.Patient description: The patient to associate the generated observations with. - id: dataFields type: System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field} description: The list of fields used to look up observation configurations and drive observation generation. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}} description: A task that returns the list of generated instances; entries are omitted when no configuration is found for a field. content.vb: Public Function GenerateObservationByField(patient As Patient, dataFields As List(Of Field)) As Task(Of List(Of PatientObservation)) overload: adas_core.Application.Services.ObservationDemoService.GenerateObservationByField* implements: - adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) nameWithType.vb: ObservationDemoService.GenerateObservationByField(Patient, List(Of Field)) fullName.vb: adas_core.Application.Services.ObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List(Of adas_core.Domain.Models.GroupedObservations.Field)) name.vb: GenerateObservationByField(Patient, List(Of Field)) - uid: adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) commentId: M:adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) id: GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) parent: adas_core.Application.Services.ObservationDemoService langs: - csharp - vb name: GenerateGroupedObservation(Patient, GroupedField) nameWithType: ObservationDemoService.GenerateGroupedObservation(Patient, GroupedField) fullName: adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient, adas_core.Domain.Models.GroupedObservations.GroupedField) type: Method source: remote: path: adas-core.Application/Services/ObservationDemoService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GenerateGroupedObservation path: ../../adas-core.Application/Services/ObservationDemoService.cs startLine: 156 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Generates a for the given patient and grouped field, producing time-spaced observations for each configured name and result type based on the field's regularity. example: [] syntax: content: public Task GenerateGroupedObservation(Patient patient, GroupedField groupedField) parameters: - id: patient type: adas_core.Domain.Models.MongoModels.Patient description: The patient to associate the generated grouped observation with. - id: groupedField type: adas_core.Domain.Models.GroupedObservations.GroupedField description: The grouped field configuration that defines the names, results, regularity, and maximum number of observations to generate. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.GroupedObservation} description: A task that returns the populated containing the generated observations. content.vb: Public Function GenerateGroupedObservation(patient As Patient, groupedField As GroupedField) As Task(Of GroupedObservation) overload: adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation* implements: - adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) references: - uid: adas_core.Application.Services commentId: N:adas_core.Application.Services href: adas_core.html name: adas_core.Application.Services nameWithType: adas_core.Application.Services fullName: adas_core.Application.Services 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 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 - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: adas_core.Application.Services.Interfaces.IObservationDemoService commentId: T:adas_core.Application.Services.Interfaces.IObservationDemoService parent: adas_core.Application.Services.Interfaces href: adas_core.Application.Services.Interfaces.IObservationDemoService.html name: IObservationDemoService nameWithType: IObservationDemoService fullName: adas_core.Application.Services.Interfaces.IObservationDemoService - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - 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: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - 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: 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: adas_core.Application.Services.ObservationDemoService.#ctor* commentId: Overload:adas_core.Application.Services.ObservationDemoService.#ctor href: adas_core.Application.Services.ObservationDemoService.html#adas_core_Application_Services_ObservationDemoService__ctor_adas_core_Application_Services_Interfaces_IConfigObservationService_System_Lazy_adas_core_Application_Services_Interfaces_IAlarmService__ name: ObservationDemoService nameWithType: ObservationDemoService.ObservationDemoService fullName: adas_core.Application.Services.ObservationDemoService.ObservationDemoService nameWithType.vb: ObservationDemoService.New fullName.vb: adas_core.Application.Services.ObservationDemoService.New name.vb: New - uid: adas_core.Application.Services.Interfaces.IConfigObservationService commentId: T:adas_core.Application.Services.Interfaces.IConfigObservationService parent: adas_core.Application.Services.Interfaces href: adas_core.Application.Services.Interfaces.IConfigObservationService.html name: IConfigObservationService nameWithType: IConfigObservationService fullName: adas_core.Application.Services.Interfaces.IConfigObservationService - uid: System.Lazy{adas_core.Application.Services.Interfaces.IAlarmService} commentId: T:System.Lazy{adas_core.Application.Services.Interfaces.IAlarmService} parent: System definition: System.Lazy`1 href: https://learn.microsoft.com/dotnet/api/system.lazy-1 name: Lazy nameWithType: Lazy fullName: System.Lazy nameWithType.vb: Lazy(Of IAlarmService) fullName.vb: System.Lazy(Of adas_core.Application.Services.Interfaces.IAlarmService) name.vb: Lazy(Of IAlarmService) spec.csharp: - uid: System.Lazy`1 name: Lazy isExternal: true href: https://learn.microsoft.com/dotnet/api/system.lazy-1 - name: < - uid: adas_core.Application.Services.Interfaces.IAlarmService name: IAlarmService href: adas_core.Application.Services.Interfaces.IAlarmService.html - name: '>' spec.vb: - uid: System.Lazy`1 name: Lazy isExternal: true href: https://learn.microsoft.com/dotnet/api/system.lazy-1 - name: ( - name: Of - name: " " - uid: adas_core.Application.Services.Interfaces.IAlarmService name: IAlarmService href: adas_core.Application.Services.Interfaces.IAlarmService.html - name: ) - uid: System.Lazy`1 commentId: T:System.Lazy`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.lazy-1 name: Lazy nameWithType: Lazy fullName: System.Lazy nameWithType.vb: Lazy(Of T) fullName.vb: System.Lazy(Of T) name.vb: Lazy(Of T) spec.csharp: - uid: System.Lazy`1 name: Lazy isExternal: true href: https://learn.microsoft.com/dotnet/api/system.lazy-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Lazy`1 name: Lazy isExternal: true href: https://learn.microsoft.com/dotnet/api/system.lazy-1 - name: ( - name: Of - name: " " - name: T - name: ) - 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.ObservationDemoService.GenerateAlarmByField* commentId: Overload:adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField href: adas_core.Application.Services.ObservationDemoService.html#adas_core_Application_Services_ObservationDemoService_GenerateAlarmByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ name: GenerateAlarmByField nameWithType: ObservationDemoService.GenerateAlarmByField fullName: adas_core.Application.Services.ObservationDemoService.GenerateAlarmByField - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) commentId: M:adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) parent: adas_core.Application.Services.Interfaces.IObservationDemoService isExternal: true href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateAlarmByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ name: GenerateAlarmByField(Patient, List) nameWithType: IObservationDemoService.GenerateAlarmByField(Patient, List) fullName: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List) nameWithType.vb: IObservationDemoService.GenerateAlarmByField(Patient, List(Of Field)) fullName.vb: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List(Of adas_core.Domain.Models.GroupedObservations.Field)) name.vb: GenerateAlarmByField(Patient, List(Of Field)) spec.csharp: - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) name: GenerateAlarmByField href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateAlarmByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ - name: ( - uid: adas_core.Domain.Models.MongoModels.Patient name: Patient - name: ',' - 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.GroupedObservations.Field name: Field - name: '>' - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateAlarmByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) name: GenerateAlarmByField href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateAlarmByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ - name: ( - uid: adas_core.Domain.Models.MongoModels.Patient name: Patient - name: ',' - 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.GroupedObservations.Field name: Field - name: ) - name: ) - uid: adas_core.Domain.Models.MongoModels.Patient commentId: T:adas_core.Domain.Models.MongoModels.Patient parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.Patient.html name: Patient nameWithType: Patient fullName: adas_core.Domain.Models.MongoModels.Patient - uid: System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field} commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field} 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 Field) fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.GroupedObservations.Field) name.vb: List(Of Field) 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.GroupedObservations.Field name: Field href: adas_core.Domain.Models.GroupedObservations.Field.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.GroupedObservations.Field name: Field href: adas_core.Domain.Models.GroupedObservations.Field.html - name: ) - uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservationAlarm}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservationAlarm}} 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 PatientObservationAlarm)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.PatientObservationAlarm)) name.vb: Task(Of List(Of PatientObservationAlarm)) 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.PatientObservationAlarm name: PatientObservationAlarm - 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.PatientObservationAlarm name: PatientObservationAlarm - name: ) - 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.MongoModels commentId: N:adas_core.Domain.Models.MongoModels href: adas_core.html name: adas_core.Domain.Models.MongoModels nameWithType: adas_core.Domain.Models.MongoModels fullName: adas_core.Domain.Models.MongoModels 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.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.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.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html - 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: 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: 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.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.ObservationDemoService.GenerateObservationByField* commentId: Overload:adas_core.Application.Services.ObservationDemoService.GenerateObservationByField href: adas_core.Application.Services.ObservationDemoService.html#adas_core_Application_Services_ObservationDemoService_GenerateObservationByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ name: GenerateObservationByField nameWithType: ObservationDemoService.GenerateObservationByField fullName: adas_core.Application.Services.ObservationDemoService.GenerateObservationByField - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) commentId: M:adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) parent: adas_core.Application.Services.Interfaces.IObservationDemoService isExternal: true href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateObservationByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ name: GenerateObservationByField(Patient, List) nameWithType: IObservationDemoService.GenerateObservationByField(Patient, List) fullName: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List) nameWithType.vb: IObservationDemoService.GenerateObservationByField(Patient, List(Of Field)) fullName.vb: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List(Of adas_core.Domain.Models.GroupedObservations.Field)) name.vb: GenerateObservationByField(Patient, List(Of Field)) spec.csharp: - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) name: GenerateObservationByField href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateObservationByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ - name: ( - uid: adas_core.Domain.Models.MongoModels.Patient name: Patient - name: ',' - 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.GroupedObservations.Field name: Field - name: '>' - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateObservationByField(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservations.Field}) name: GenerateObservationByField href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateObservationByField_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_GroupedObservations_Field__ - name: ( - uid: adas_core.Domain.Models.MongoModels.Patient name: Patient - name: ',' - 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.GroupedObservations.Field name: Field - name: ) - 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.Domain.Models.GroupedObservation commentId: T:adas_core.Domain.Models.GroupedObservation parent: adas_core.Domain.Models href: adas_core.Domain.Models.GroupedObservation.html name: GroupedObservation nameWithType: GroupedObservation fullName: adas_core.Domain.Models.GroupedObservation - uid: adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation* commentId: Overload:adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation href: adas_core.Application.Services.ObservationDemoService.html#adas_core_Application_Services_ObservationDemoService_GenerateGroupedObservation_adas_core_Domain_Models_MongoModels_Patient_adas_core_Domain_Models_GroupedObservations_GroupedField_ name: GenerateGroupedObservation nameWithType: ObservationDemoService.GenerateGroupedObservation fullName: adas_core.Application.Services.ObservationDemoService.GenerateGroupedObservation - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) commentId: M:adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) parent: adas_core.Application.Services.Interfaces.IObservationDemoService href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateGroupedObservation_adas_core_Domain_Models_MongoModels_Patient_adas_core_Domain_Models_GroupedObservations_GroupedField_ name: GenerateGroupedObservation(Patient, GroupedField) nameWithType: IObservationDemoService.GenerateGroupedObservation(Patient, GroupedField) fullName: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient, adas_core.Domain.Models.GroupedObservations.GroupedField) spec.csharp: - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) name: GenerateGroupedObservation href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateGroupedObservation_adas_core_Domain_Models_MongoModels_Patient_adas_core_Domain_Models_GroupedObservations_GroupedField_ - name: ( - uid: adas_core.Domain.Models.MongoModels.Patient name: Patient - name: ',' - name: " " - uid: adas_core.Domain.Models.GroupedObservations.GroupedField name: GroupedField - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.IObservationDemoService.GenerateGroupedObservation(adas_core.Domain.Models.MongoModels.Patient,adas_core.Domain.Models.GroupedObservations.GroupedField) name: GenerateGroupedObservation href: adas_core.Application.Services.Interfaces.IObservationDemoService.html#adas_core_Application_Services_Interfaces_IObservationDemoService_GenerateGroupedObservation_adas_core_Domain_Models_MongoModels_Patient_adas_core_Domain_Models_GroupedObservations_GroupedField_ - name: ( - uid: adas_core.Domain.Models.MongoModels.Patient name: Patient - name: ',' - name: " " - uid: adas_core.Domain.Models.GroupedObservations.GroupedField name: GroupedField - name: ) - uid: adas_core.Domain.Models.GroupedObservations.GroupedField commentId: T:adas_core.Domain.Models.GroupedObservations.GroupedField parent: adas_core.Domain.Models.GroupedObservations href: adas_core.Domain.Models.GroupedObservations.GroupedField.html name: GroupedField nameWithType: GroupedField fullName: adas_core.Domain.Models.GroupedObservations.GroupedField - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.GroupedObservation} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.GroupedObservation} 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 GroupedObservation) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.GroupedObservation) name.vb: Task(Of GroupedObservation) 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.GroupedObservation name: GroupedObservation - 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.GroupedObservation name: GroupedObservation - name: ) - uid: adas_core.Domain.Models.GroupedObservations commentId: N:adas_core.Domain.Models.GroupedObservations href: adas_core.html name: adas_core.Domain.Models.GroupedObservations nameWithType: adas_core.Domain.Models.GroupedObservations fullName: adas_core.Domain.Models.GroupedObservations 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.GroupedObservations name: GroupedObservations href: adas_core.Domain.Models.GroupedObservations.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.GroupedObservations name: GroupedObservations href: adas_core.Domain.Models.GroupedObservations.html