1019 lines
45 KiB
YAML
1019 lines
45 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.Application.Services.Interfaces.IGroupedObservationService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IGroupedObservationService
|
|
id: IGroupedObservationService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
children:
|
|
- adas_core.Application.Services.Interfaces.IGroupedObservationService.CreateNextEmptyObs(adas_core.Application.Subscriptions.WsSubscriberGrouped)
|
|
- adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations(MongoDB.Bson.ObjectId,System.Int32,System.Collections.Generic.List{System.String})
|
|
- adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservation.GroupedObservationObs},adas_core.Domain.Models.PatientObservation,System.String)
|
|
- adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.String,System.Boolean,System.Threading.CancellationToken)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: IGroupedObservationService
|
|
nameWithType: IGroupedObservationService
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService
|
|
type: Interface
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: IGroupedObservationService
|
|
path: ../../adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
startLine: 7
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
syntax:
|
|
content: public interface IGroupedObservationService
|
|
content.vb: Public Interface IGroupedObservationService
|
|
derivedClasses:
|
|
- adas_core.Application.Services.GroupedObservationService
|
|
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.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.String,System.Boolean,System.Threading.CancellationToken)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.String,System.Boolean,System.Threading.CancellationToken)
|
|
id: GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.String,System.Boolean,System.Threading.CancellationToken)
|
|
parent: adas_core.Application.Services.Interfaces.IGroupedObservationService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GenerateGroupedObservation(ObjectId, GroupedField, string, bool, CancellationToken)
|
|
nameWithType: IGroupedObservationService.GenerateGroupedObservation(ObjectId, GroupedField, string, bool, CancellationToken)
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId, adas_core.Domain.Models.GroupedObservations.GroupedField, string, bool, System.Threading.CancellationToken)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GenerateGroupedObservation
|
|
path: ../../adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
startLine: 18
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Generates a grouped observation for the specified identifier and grouped field, applying the provided time zone for time-based calculations.
|
|
example: []
|
|
syntax:
|
|
content: Task<GroupedObservation> GenerateGroupedObservation(ObjectId id, GroupedField groupedField, string timeZoneId = "Romance Standard Time", bool cacheIsChecked = false, CancellationToken ct = default)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The unique identifier of the source entity used to produce the grouped observation.
|
|
- id: groupedField
|
|
type: adas_core.Domain.Models.GroupedObservations.GroupedField
|
|
description: The field definition that determines how the observation is grouped.
|
|
- id: timeZoneId
|
|
type: System.String
|
|
description: The identifier of the time zone to apply when interpreting time values. Defaults to "Romance Standard Time".
|
|
- id: cacheIsChecked
|
|
type: System.Boolean
|
|
description: Indicates whether the cache should be consulted before generating the result. Defaults to <code>false</code>.
|
|
- id: ct
|
|
type: System.Threading.CancellationToken
|
|
description: The cancellation token used to cancel the operation.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.GroupedObservation}
|
|
description: A task that represents the asynchronous generation, producing the resulting <xref href="adas_core.Domain.Models.GroupedObservation" data-throw-if-not-resolved="false"></xref>.
|
|
content.vb: Function GenerateGroupedObservation(id As ObjectId, groupedField As GroupedField, timeZoneId As String = "Romance Standard Time", cacheIsChecked As Boolean = False, ct As CancellationToken = Nothing) As Task(Of GroupedObservation)
|
|
overload: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation*
|
|
nameWithType.vb: IGroupedObservationService.GenerateGroupedObservation(ObjectId, GroupedField, String, Boolean, CancellationToken)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId, adas_core.Domain.Models.GroupedObservations.GroupedField, String, Boolean, System.Threading.CancellationToken)
|
|
name.vb: GenerateGroupedObservation(ObjectId, GroupedField, String, Boolean, CancellationToken)
|
|
- uid: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservation.GroupedObservationObs},adas_core.Domain.Models.PatientObservation,System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservation.GroupedObservationObs},adas_core.Domain.Models.PatientObservation,System.String)
|
|
id: GenerateGroupedObservation(MongoDB.Bson.ObjectId,adas_core.Domain.Models.GroupedObservations.GroupedField,System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservation.GroupedObservationObs},adas_core.Domain.Models.PatientObservation,System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IGroupedObservationService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GenerateGroupedObservation(ObjectId, GroupedField, List<GroupedObservationObs>, PatientObservation, string)
|
|
nameWithType: IGroupedObservationService.GenerateGroupedObservation(ObjectId, GroupedField, List<GroupedObservation.GroupedObservationObs>, PatientObservation, string)
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId, adas_core.Domain.Models.GroupedObservations.GroupedField, System.Collections.Generic.List<adas_core.Domain.Models.GroupedObservation.GroupedObservationObs>, adas_core.Domain.Models.PatientObservation, string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GenerateGroupedObservation
|
|
path: ../../adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
startLine: 32
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: >-
|
|
Generates a <xref href="adas_core.Domain.Models.GroupedObservation" data-throw-if-not-resolved="false"></xref> for the specified patient based on the provided patient observation,
|
|
|
|
grouped field configuration, and any previously recorded grouped observations, applying the supplied time zone for
|
|
|
|
date and time handling.
|
|
example: []
|
|
syntax:
|
|
content: Task<GroupedObservation> GenerateGroupedObservation(ObjectId obsPatientId, GroupedField groupedField, List<GroupedObservation.GroupedObservationObs> wsgLastGroupedObservationObs, PatientObservation obs, string timeZoneId = "Romance Standard Time")
|
|
parameters:
|
|
- id: obsPatientId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The identifier of the patient whose observation is being grouped.
|
|
- id: groupedField
|
|
type: adas_core.Domain.Models.GroupedObservations.GroupedField
|
|
description: The grouped field definition that drives how the observation is categorized and aggregated.
|
|
- id: wsgLastGroupedObservationObs
|
|
type: System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservation.GroupedObservationObs}
|
|
description: The list of the most recent grouped observation entries used as context when building the new grouped observation.
|
|
- id: obs
|
|
type: adas_core.Domain.Models.PatientObservation
|
|
description: The patient observation to be processed and grouped.
|
|
- id: timeZoneId
|
|
type: System.String
|
|
description: The time zone identifier used when computing date and time values for the grouped observation. Defaults to "Romance Standard Time".
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.GroupedObservation}
|
|
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> that resolves to the generated grouped observation for the patient.
|
|
content.vb: Function GenerateGroupedObservation(obsPatientId As ObjectId, groupedField As GroupedField, wsgLastGroupedObservationObs As List(Of GroupedObservation.GroupedObservationObs), obs As PatientObservation, timeZoneId As String = "Romance Standard Time") As Task(Of GroupedObservation)
|
|
overload: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation*
|
|
nameWithType.vb: IGroupedObservationService.GenerateGroupedObservation(ObjectId, GroupedField, List(Of GroupedObservation.GroupedObservationObs), PatientObservation, String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation(MongoDB.Bson.ObjectId, adas_core.Domain.Models.GroupedObservations.GroupedField, System.Collections.Generic.List(Of adas_core.Domain.Models.GroupedObservation.GroupedObservationObs), adas_core.Domain.Models.PatientObservation, String)
|
|
name.vb: GenerateGroupedObservation(ObjectId, GroupedField, List(Of GroupedObservationObs), PatientObservation, String)
|
|
- uid: adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations(MongoDB.Bson.ObjectId,System.Int32,System.Collections.Generic.List{System.String})
|
|
commentId: M:adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations(MongoDB.Bson.ObjectId,System.Int32,System.Collections.Generic.List{System.String})
|
|
id: FindLastObservations(MongoDB.Bson.ObjectId,System.Int32,System.Collections.Generic.List{System.String})
|
|
parent: adas_core.Application.Services.Interfaces.IGroupedObservationService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindLastObservations(ObjectId, int, List<string>?)
|
|
nameWithType: IGroupedObservationService.FindLastObservations(ObjectId, int, List<string>?)
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations(MongoDB.Bson.ObjectId, int, System.Collections.Generic.List<string>?)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindLastObservations
|
|
path: ../../adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
startLine: 43
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Retrieves the most recent observations for a specified patient, optionally filtered by observation types.
|
|
example: []
|
|
syntax:
|
|
content: Task<List<PatientObservation>> FindLastObservations(ObjectId patientId, int num = 2, List<string>? filterObservations = null)
|
|
parameters:
|
|
- id: patientId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The unique identifier of the patient whose observations are being retrieved.
|
|
- id: num
|
|
type: System.Int32
|
|
description: The maximum number of recent observations to return. Defaults to 2.
|
|
- id: filterObservations
|
|
type: System.Collections.Generic.List{System.String}
|
|
description: An optional list of observation names to include; if null, all observation types are considered.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientObservation}}
|
|
description: A task that resolves to a list of the most recent <xref href="adas_core.Domain.Models.PatientObservation" data-throw-if-not-resolved="false"></xref> entries for the patient.
|
|
content.vb: Function FindLastObservations(patientId As ObjectId, num As Integer = 2, filterObservations As List(Of String) = Nothing) As Task(Of List(Of PatientObservation))
|
|
overload: adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations*
|
|
nameWithType.vb: IGroupedObservationService.FindLastObservations(ObjectId, Integer, List(Of String))
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations(MongoDB.Bson.ObjectId, Integer, System.Collections.Generic.List(Of String))
|
|
name.vb: FindLastObservations(ObjectId, Integer, List(Of String))
|
|
- uid: adas_core.Application.Services.Interfaces.IGroupedObservationService.CreateNextEmptyObs(adas_core.Application.Subscriptions.WsSubscriberGrouped)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IGroupedObservationService.CreateNextEmptyObs(adas_core.Application.Subscriptions.WsSubscriberGrouped)
|
|
id: CreateNextEmptyObs(adas_core.Application.Subscriptions.WsSubscriberGrouped)
|
|
parent: adas_core.Application.Services.Interfaces.IGroupedObservationService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: CreateNextEmptyObs(WsSubscriberGrouped)
|
|
nameWithType: IGroupedObservationService.CreateNextEmptyObs(WsSubscriberGrouped)
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService.CreateNextEmptyObs(adas_core.Application.Subscriptions.WsSubscriberGrouped)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: CreateNextEmptyObs
|
|
path: ../../adas-core.Application/Services/Interfaces/IGroupedObservationService.cs
|
|
startLine: 51
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously creates a new empty observation for the next available slot in the grouped web service subscription.
|
|
example: []
|
|
syntax:
|
|
content: Task<GroupedObservation> CreateNextEmptyObs(WsSubscriberGrouped ws)
|
|
parameters:
|
|
- id: ws
|
|
type: adas_core.Application.Subscriptions.WsSubscriberGrouped
|
|
description: The grouped web service subscriber for which the next empty observation is created.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.GroupedObservation}
|
|
description: A task that represents the asynchronous operation, containing the newly created <xref href="adas_core.Domain.Models.GroupedObservation" data-throw-if-not-resolved="false"></xref>.
|
|
content.vb: Function CreateNextEmptyObs(ws As WsSubscriberGrouped) As Task(Of GroupedObservation)
|
|
overload: adas_core.Application.Services.Interfaces.IGroupedObservationService.CreateNextEmptyObs*
|
|
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: 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.Interfaces.IGroupedObservationService.GenerateGroupedObservation*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation
|
|
href: adas_core.Application.Services.Interfaces.IGroupedObservationService.html#adas_core_Application_Services_Interfaces_IGroupedObservationService_GenerateGroupedObservation_MongoDB_Bson_ObjectId_adas_core_Domain_Models_GroupedObservations_GroupedField_System_String_System_Boolean_System_Threading_CancellationToken_
|
|
name: GenerateGroupedObservation
|
|
nameWithType: IGroupedObservationService.GenerateGroupedObservation
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService.GenerateGroupedObservation
|
|
- uid: MongoDB.Bson.ObjectId
|
|
commentId: T:MongoDB.Bson.ObjectId
|
|
parent: MongoDB.Bson
|
|
isExternal: true
|
|
name: ObjectId
|
|
nameWithType: ObjectId
|
|
fullName: MongoDB.Bson.ObjectId
|
|
- 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.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.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.CancellationToken
|
|
commentId: T:System.Threading.CancellationToken
|
|
parent: System.Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.cancellationtoken
|
|
name: CancellationToken
|
|
nameWithType: CancellationToken
|
|
fullName: System.Threading.CancellationToken
|
|
- 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<GroupedObservation>
|
|
nameWithType: Task<GroupedObservation>
|
|
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.GroupedObservation>
|
|
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
|
|
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: 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.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
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: System.Threading
|
|
commentId: N:System.Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Threading
|
|
nameWithType: System.Threading
|
|
fullName: System.Threading
|
|
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
|
|
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
|
|
- 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<TResult>
|
|
nameWithType: Task<TResult>
|
|
fullName: System.Threading.Tasks.Task<TResult>
|
|
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: System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservation.GroupedObservationObs}
|
|
commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.GroupedObservation.GroupedObservationObs}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.List`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
name: List<GroupedObservation.GroupedObservationObs>
|
|
nameWithType: List<GroupedObservation.GroupedObservationObs>
|
|
fullName: System.Collections.Generic.List<adas_core.Domain.Models.GroupedObservation.GroupedObservationObs>
|
|
nameWithType.vb: List(Of GroupedObservation.GroupedObservationObs)
|
|
fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.GroupedObservation.GroupedObservationObs)
|
|
name.vb: List(Of GroupedObservation.GroupedObservationObs)
|
|
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.GroupedObservation
|
|
name: GroupedObservation
|
|
href: adas_core.Domain.Models.GroupedObservation.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models.GroupedObservation.GroupedObservationObs
|
|
name: GroupedObservationObs
|
|
href: adas_core.Domain.Models.GroupedObservation.GroupedObservationObs.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.GroupedObservation
|
|
name: GroupedObservation
|
|
href: adas_core.Domain.Models.GroupedObservation.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models.GroupedObservation.GroupedObservationObs
|
|
name: GroupedObservationObs
|
|
href: adas_core.Domain.Models.GroupedObservation.GroupedObservationObs.html
|
|
- 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: 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<T>
|
|
nameWithType: List<T>
|
|
fullName: System.Collections.Generic.List<T>
|
|
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: adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations
|
|
href: adas_core.Application.Services.Interfaces.IGroupedObservationService.html#adas_core_Application_Services_Interfaces_IGroupedObservationService_FindLastObservations_MongoDB_Bson_ObjectId_System_Int32_System_Collections_Generic_List_System_String__
|
|
name: FindLastObservations
|
|
nameWithType: IGroupedObservationService.FindLastObservations
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService.FindLastObservations
|
|
- uid: System.Int32
|
|
commentId: T:System.Int32
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.int32
|
|
name: int
|
|
nameWithType: int
|
|
fullName: int
|
|
nameWithType.vb: Integer
|
|
fullName.vb: Integer
|
|
name.vb: Integer
|
|
- uid: System.Collections.Generic.List{System.String}
|
|
commentId: T:System.Collections.Generic.List{System.String}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.List`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
name: List<string>
|
|
nameWithType: List<string>
|
|
fullName: System.Collections.Generic.List<string>
|
|
nameWithType.vb: List(Of String)
|
|
fullName.vb: System.Collections.Generic.List(Of String)
|
|
name.vb: List(Of String)
|
|
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: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- 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: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- 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<List<PatientObservation>>
|
|
nameWithType: Task<List<PatientObservation>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.PatientObservation>>
|
|
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.IGroupedObservationService.CreateNextEmptyObs*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IGroupedObservationService.CreateNextEmptyObs
|
|
href: adas_core.Application.Services.Interfaces.IGroupedObservationService.html#adas_core_Application_Services_Interfaces_IGroupedObservationService_CreateNextEmptyObs_adas_core_Application_Subscriptions_WsSubscriberGrouped_
|
|
name: CreateNextEmptyObs
|
|
nameWithType: IGroupedObservationService.CreateNextEmptyObs
|
|
fullName: adas_core.Application.Services.Interfaces.IGroupedObservationService.CreateNextEmptyObs
|
|
- uid: adas_core.Application.Subscriptions.WsSubscriberGrouped
|
|
commentId: T:adas_core.Application.Subscriptions.WsSubscriberGrouped
|
|
parent: adas_core.Application.Subscriptions
|
|
href: adas_core.Application.Subscriptions.WsSubscriberGrouped.html
|
|
name: WsSubscriberGrouped
|
|
nameWithType: WsSubscriberGrouped
|
|
fullName: adas_core.Application.Subscriptions.WsSubscriberGrouped
|
|
- uid: adas_core.Application.Subscriptions
|
|
commentId: N:adas_core.Application.Subscriptions
|
|
href: adas_core.html
|
|
name: adas_core.Application.Subscriptions
|
|
nameWithType: adas_core.Application.Subscriptions
|
|
fullName: adas_core.Application.Subscriptions
|
|
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.Subscriptions
|
|
name: Subscriptions
|
|
href: adas_core.Application.Subscriptions.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.Subscriptions
|
|
name: Subscriptions
|
|
href: adas_core.Application.Subscriptions.html
|