Files
adas-core/Documentation/docs/api/adas_core.Application.Services.Interfaces.IDiagnosisService.yml
T
2026-06-26 10:29:23 +02:00

1073 lines
47 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService
commentId: T:adas_core.Application.Services.Interfaces.IDiagnosisService
id: IDiagnosisService
parent: adas_core.Application.Services.Interfaces
children:
- adas_core.Application.Services.Interfaces.IDiagnosisService.Archive(adas_core.Domain.Models.MongoModels.Patient)
- adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDiagnosisService.GetByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis(System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis},adas_core.Domain.Models.MongoModels.Patient,System.DateTime)
- adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
- adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
- adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
langs:
- csharp
- vb
name: IDiagnosisService
nameWithType: IDiagnosisService
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService
type: Interface
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: IDiagnosisService
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 6
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
syntax:
content: 'public interface IDiagnosisService : IApiRequestService'
content.vb: Public Interface IDiagnosisService Inherits IApiRequestService
derivedClasses:
- adas_core.Application.Services.DiagnosisService
inheritedMembers:
- adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
- adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
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.IDiagnosisService.GetByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.GetByPatientId(MongoDB.Bson.ObjectId)
id: GetByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: GetByPatientId(ObjectId)
nameWithType: IDiagnosisService.GetByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.GetByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByPatientId
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 13
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves all diagnoses associated with the specified patient identifier.
example: []
syntax:
content: Task<List<PatientDiagnosis>> GetByPatientId(ObjectId patientId)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose diagnoses are being retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis}}
description: A task representing the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.PatientDiagnosis" data-throw-if-not-resolved="false"></xref> records for the specified patient; an empty list is returned if no diagnoses are found.
content.vb: Function GetByPatientId(patientId As ObjectId) As Task(Of List(Of PatientDiagnosis))
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.GetByPatientId*
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId(MongoDB.Bson.ObjectId)
id: DeleteByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: DeleteByPatientId(ObjectId)
nameWithType: IDiagnosisService.DeleteByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteByPatientId
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 18
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Deletes records associated with the specified patient identifier.
example: []
syntax:
content: Task DeleteByPatientId(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose related records should be removed.
return:
type: System.Threading.Tasks.Task
content.vb: Function DeleteByPatientId(id As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId*
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.Archive(adas_core.Domain.Models.MongoModels.Patient)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.Archive(adas_core.Domain.Models.MongoModels.Patient)
id: Archive(adas_core.Domain.Models.MongoModels.Patient)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: Archive(Patient)
nameWithType: IDiagnosisService.Archive(Patient)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.Archive(adas_core.Domain.Models.MongoModels.Patient)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Archive
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 23
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously archives the specified patient, marking the patient record as archived rather than permanently deleting it.
example: []
syntax:
content: Task Archive(Patient patient)
parameters:
- id: patient
type: adas_core.Domain.Models.MongoModels.Patient
description: The patient to archive.
return:
type: System.Threading.Tasks.Task
content.vb: Function Archive(patient As Patient) As Task
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.Archive*
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
id: ArchiveByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: ArchiveByPatientId(ObjectId)
nameWithType: IDiagnosisService.ArchiveByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ArchiveByPatientId
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 28
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Archives the records associated with the specified patient identifier.
example: []
syntax:
content: Task ArchiveByPatientId(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose records will be archived.
return:
type: System.Threading.Tasks.Task
content.vb: Function ArchiveByPatientId(id As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId*
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
id: ProcessDiagnosisObservation(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: ProcessDiagnosisObservation(ApiRequest, Patient)
nameWithType: IDiagnosisService.ProcessDiagnosisObservation(ApiRequest, Patient)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation(adas_core.Domain.Models.ApiRequest, adas_core.Domain.Models.MongoModels.Patient)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ProcessDiagnosisObservation
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 34
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Processes a diagnosis observation for the specified patient based on the supplied API request data.
example: []
syntax:
content: Task ProcessDiagnosisObservation(ApiRequest apiRequest, Patient patient)
parameters:
- id: apiRequest
type: adas_core.Domain.Models.ApiRequest
description: The API request containing the diagnosis observation payload and contextual information to process.
- id: patient
type: adas_core.Domain.Models.MongoModels.Patient
description: The patient to whom the diagnosis observation pertains.
return:
type: System.Threading.Tasks.Task
content.vb: Function ProcessDiagnosisObservation(apiRequest As ApiRequest, patient As Patient) As Task
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation*
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
id: SaveRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: SaveRequest(ApiRequest, Patient)
nameWithType: IDiagnosisService.SaveRequest(ApiRequest, Patient)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest(adas_core.Domain.Models.ApiRequest, adas_core.Domain.Models.MongoModels.Patient)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: SaveRequest
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 40
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Persists the specified API request along with its associated patient data.
example: []
syntax:
content: Task SaveRequest(ApiRequest apiRequest, Patient patient)
parameters:
- id: apiRequest
type: adas_core.Domain.Models.ApiRequest
description: The API request to be saved.
- id: patient
type: adas_core.Domain.Models.MongoModels.Patient
description: The patient associated with the API request.
return:
type: System.Threading.Tasks.Task
content.vb: Function SaveRequest(apiRequest As ApiRequest, patient As Patient) As Task
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest*
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis(System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis},adas_core.Domain.Models.MongoModels.Patient,System.DateTime)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis(System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis},adas_core.Domain.Models.MongoModels.Patient,System.DateTime)
id: ProcessDiagnosis(System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis},adas_core.Domain.Models.MongoModels.Patient,System.DateTime)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: ProcessDiagnosis(List<PatientDiagnosis>, Patient, DateTime)
nameWithType: IDiagnosisService.ProcessDiagnosis(List<PatientDiagnosis>, Patient, DateTime)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis(System.Collections.Generic.List<adas_core.Domain.Models.PatientDiagnosis>, adas_core.Domain.Models.MongoModels.Patient, System.DateTime)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ProcessDiagnosis
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 47
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Processes the provided list of patient diagnoses for the specified patient at the given message time.
example: []
syntax:
content: Task ProcessDiagnosis(List<PatientDiagnosis> diagnosis, Patient patient, DateTime messageTime)
parameters:
- id: diagnosis
type: System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis}
description: The list of patient diagnoses to be processed.
- id: patient
type: adas_core.Domain.Models.MongoModels.Patient
description: The patient associated with the diagnoses.
- id: messageTime
type: System.DateTime
description: The timestamp of the message triggering the diagnosis processing.
return:
type: System.Threading.Tasks.Task
content.vb: Function ProcessDiagnosis(diagnosis As List(Of PatientDiagnosis), patient As Patient, messageTime As Date) As Task
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis*
nameWithType.vb: IDiagnosisService.ProcessDiagnosis(List(Of PatientDiagnosis), Patient, Date)
fullName.vb: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis(System.Collections.Generic.List(Of adas_core.Domain.Models.PatientDiagnosis), adas_core.Domain.Models.MongoModels.Patient, Date)
name.vb: ProcessDiagnosis(List(Of PatientDiagnosis), Patient, Date)
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
id: UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDiagnosisService
langs:
- csharp
- vb
name: UpdateManyObjectId(string, ObjectId, ObjectId)
nameWithType: IDiagnosisService.UpdateManyObjectId(string, ObjectId, ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId(string, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDiagnosisService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateManyObjectId
path: ../../adas-core.Application/Services/Interfaces/IDiagnosisService.cs
startLine: 54
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates multiple records by replacing the <code class="paramref">oldId</code> with the new <code class="paramref">id</code> in the field identified by <code class="paramref">nameId</code>.
example: []
syntax:
content: Task UpdateManyObjectId(string nameId, ObjectId id, ObjectId oldId)
parameters:
- id: nameId
type: System.String
description: The identifier of the field or property whose ObjectId values will be updated.
- id: id
type: MongoDB.Bson.ObjectId
description: The new ObjectId value to assign to the matching records.
- id: oldId
type: MongoDB.Bson.ObjectId
description: The existing ObjectId value to be replaced in the matching records.
return:
type: System.Threading.Tasks.Task
content.vb: Function UpdateManyObjectId(nameId As String, id As ObjectId, oldId As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId*
nameWithType.vb: IDiagnosisService.UpdateManyObjectId(String, ObjectId, ObjectId)
fullName.vb: adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId(String, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
name.vb: UpdateManyObjectId(String, ObjectId, ObjectId)
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: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
commentId: M:adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
parent: adas_core.Application.Services.Interfaces.IApiRequestService
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
name: SaveRequestAsync(ApiRequest)
nameWithType: IApiRequestService.SaveRequestAsync(ApiRequest)
fullName: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
name: SaveRequestAsync
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
name: SaveRequestAsync
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
commentId: M:adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
parent: adas_core.Application.Services.Interfaces.IApiRequestService
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
name: SaveRequest(ApiRequest)
nameWithType: IApiRequestService.SaveRequest(ApiRequest)
fullName: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
name: SaveRequest
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
name: SaveRequest
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- 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: adas_core.Application.Services.Interfaces.IApiRequestService
commentId: T:adas_core.Application.Services.Interfaces.IApiRequestService
parent: adas_core.Application.Services.Interfaces
href: adas_core.Application.Services.Interfaces.IApiRequestService.html
name: IApiRequestService
nameWithType: IApiRequestService
fullName: adas_core.Application.Services.Interfaces.IApiRequestService
- 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.PatientDiagnosis
commentId: T:adas_core.Domain.Models.PatientDiagnosis
parent: adas_core.Domain.Models
href: adas_core.Domain.Models.PatientDiagnosis.html
name: PatientDiagnosis
nameWithType: PatientDiagnosis
fullName: adas_core.Domain.Models.PatientDiagnosis
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.GetByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.GetByPatientId
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_GetByPatientId_MongoDB_Bson_ObjectId_
name: GetByPatientId
nameWithType: IDiagnosisService.GetByPatientId
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.GetByPatientId
- uid: MongoDB.Bson.ObjectId
commentId: T:MongoDB.Bson.ObjectId
parent: MongoDB.Bson
isExternal: true
name: ObjectId
nameWithType: ObjectId
fullName: MongoDB.Bson.ObjectId
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis}}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<List<PatientDiagnosis>>
nameWithType: Task<List<PatientDiagnosis>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.PatientDiagnosis>>
nameWithType.vb: Task(Of List(Of PatientDiagnosis))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.PatientDiagnosis))
name.vb: Task(Of List(Of PatientDiagnosis))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: 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.PatientDiagnosis
name: PatientDiagnosis
- 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.PatientDiagnosis
name: PatientDiagnosis
- 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: 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: 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: adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_DeleteByPatientId_MongoDB_Bson_ObjectId_
name: DeleteByPatientId
nameWithType: IDiagnosisService.DeleteByPatientId
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.DeleteByPatientId
- uid: System.Threading.Tasks.Task
commentId: T:System.Threading.Tasks.Task
parent: System.Threading.Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task
name: Task
nameWithType: Task
fullName: System.Threading.Tasks.Task
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.Archive*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.Archive
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_Archive_adas_core_Domain_Models_MongoModels_Patient_
name: Archive
nameWithType: IDiagnosisService.Archive
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.Archive
- 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: 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: adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_ArchiveByPatientId_MongoDB_Bson_ObjectId_
name: ArchiveByPatientId
nameWithType: IDiagnosisService.ArchiveByPatientId
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.ArchiveByPatientId
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_ProcessDiagnosisObservation_adas_core_Domain_Models_ApiRequest_adas_core_Domain_Models_MongoModels_Patient_
name: ProcessDiagnosisObservation
nameWithType: IDiagnosisService.ProcessDiagnosisObservation
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosisObservation
- uid: adas_core.Domain.Models.ApiRequest
commentId: T:adas_core.Domain.Models.ApiRequest
parent: adas_core.Domain.Models
href: adas_core.Domain.Models.ApiRequest.html
name: ApiRequest
nameWithType: ApiRequest
fullName: adas_core.Domain.Models.ApiRequest
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_SaveRequest_adas_core_Domain_Models_ApiRequest_adas_core_Domain_Models_MongoModels_Patient_
name: SaveRequest
nameWithType: IDiagnosisService.SaveRequest
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.SaveRequest
- uid: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_ProcessDiagnosis_System_Collections_Generic_List_adas_core_Domain_Models_PatientDiagnosis__adas_core_Domain_Models_MongoModels_Patient_System_DateTime_
name: ProcessDiagnosis
nameWithType: IDiagnosisService.ProcessDiagnosis
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.ProcessDiagnosis
- uid: System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis}
commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.PatientDiagnosis}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List<PatientDiagnosis>
nameWithType: List<PatientDiagnosis>
fullName: System.Collections.Generic.List<adas_core.Domain.Models.PatientDiagnosis>
nameWithType.vb: List(Of PatientDiagnosis)
fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.PatientDiagnosis)
name.vb: List(Of PatientDiagnosis)
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.PatientDiagnosis
name: PatientDiagnosis
href: adas_core.Domain.Models.PatientDiagnosis.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.PatientDiagnosis
name: PatientDiagnosis
href: adas_core.Domain.Models.PatientDiagnosis.html
- name: )
- uid: System.DateTime
commentId: T:System.DateTime
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.datetime
name: DateTime
nameWithType: DateTime
fullName: System.DateTime
nameWithType.vb: Date
fullName.vb: Date
name.vb: Date
- 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: 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.IDiagnosisService.UpdateManyObjectId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId
href: adas_core.Application.Services.Interfaces.IDiagnosisService.html#adas_core_Application_Services_Interfaces_IDiagnosisService_UpdateManyObjectId_System_String_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_
name: UpdateManyObjectId
nameWithType: IDiagnosisService.UpdateManyObjectId
fullName: adas_core.Application.Services.Interfaces.IDiagnosisService.UpdateManyObjectId
- 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