2828 lines
133 KiB
YAML
2828 lines
133 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.Application.Services.TreatmentService
|
|
commentId: T:adas_core.Application.Services.TreatmentService
|
|
id: TreatmentService
|
|
parent: adas_core.Application.Services
|
|
children:
|
|
- adas_core.Application.Services.TreatmentService.#ctor(adas_core.Application.Repositories.Interfaces.ITreatmentRepository,adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository,adas_core.Application.Services.Interfaces.IPatientService,adas_core.Application.Services.Interfaces.IConfigObservationService,Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.TreatmentService},adas_core.Application.Services.Interfaces.IClientMessageService,adas_core.Application.Services.Interfaces.ISubscribersService,System.Lazy{adas_core.Application.Services.Interfaces.ICalculatedObservationsService},adas_core.Application.Services.Interfaces.IUnitService,Microsoft.AspNetCore.Http.IHttpContextAccessor,adas_core.Application.Services.Interfaces.ILocalAuditService)
|
|
- adas_core.Application.Services.TreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
- adas_core.Application.Services.TreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
- adas_core.Application.Services.TreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
- adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
- adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
- adas_core.Application.Services.TreatmentService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
|
|
- adas_core.Application.Services.TreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.TreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: TreatmentService
|
|
nameWithType: TreatmentService
|
|
fullName: adas_core.Application.Services.TreatmentService
|
|
type: Class
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: TreatmentService
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 27
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Provides business logic for managing patient treatments, including insertion,
|
|
|
|
update, deletion, archiving, pagination, and broadcasting of treatment events
|
|
|
|
to subscribed clients.
|
|
remarks: >-
|
|
This service orchestrates interactions between the treatment repository, the
|
|
|
|
patient service, configuration/calculation observation services, and audit
|
|
|
|
services. It also handles inbound HL7-like pharmacy/treatment messages
|
|
|
|
(<code>OMP_O09</code>, <code>ORM_O01</code>, <code>RAS_O17</code>) and emits broadcasts to
|
|
|
|
subscribers based on the patient's point of care.
|
|
example: []
|
|
syntax:
|
|
content: 'public class TreatmentService : ITreatmentService, IApiRequestService'
|
|
content.vb: Public Class TreatmentService Implements ITreatmentService, IApiRequestService
|
|
inheritance:
|
|
- System.Object
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService
|
|
- adas_core.Application.Services.Interfaces.IApiRequestService
|
|
inheritedMembers:
|
|
- System.Object.Equals(System.Object)
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetHashCode
|
|
- System.Object.GetType
|
|
- System.Object.MemberwiseClone
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- System.Object.ToString
|
|
extensionMethods:
|
|
- System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
|
- System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
|
- System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
|
- uid: adas_core.Application.Services.TreatmentService.#ctor(adas_core.Application.Repositories.Interfaces.ITreatmentRepository,adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository,adas_core.Application.Services.Interfaces.IPatientService,adas_core.Application.Services.Interfaces.IConfigObservationService,Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.TreatmentService},adas_core.Application.Services.Interfaces.IClientMessageService,adas_core.Application.Services.Interfaces.ISubscribersService,System.Lazy{adas_core.Application.Services.Interfaces.ICalculatedObservationsService},adas_core.Application.Services.Interfaces.IUnitService,Microsoft.AspNetCore.Http.IHttpContextAccessor,adas_core.Application.Services.Interfaces.ILocalAuditService)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.#ctor(adas_core.Application.Repositories.Interfaces.ITreatmentRepository,adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository,adas_core.Application.Services.Interfaces.IPatientService,adas_core.Application.Services.Interfaces.IConfigObservationService,Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.TreatmentService},adas_core.Application.Services.Interfaces.IClientMessageService,adas_core.Application.Services.Interfaces.ISubscribersService,System.Lazy{adas_core.Application.Services.Interfaces.ICalculatedObservationsService},adas_core.Application.Services.Interfaces.IUnitService,Microsoft.AspNetCore.Http.IHttpContextAccessor,adas_core.Application.Services.Interfaces.ILocalAuditService)
|
|
id: '#ctor(adas_core.Application.Repositories.Interfaces.ITreatmentRepository,adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository,adas_core.Application.Services.Interfaces.IPatientService,adas_core.Application.Services.Interfaces.IConfigObservationService,Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.TreatmentService},adas_core.Application.Services.Interfaces.IClientMessageService,adas_core.Application.Services.Interfaces.ISubscribersService,System.Lazy{adas_core.Application.Services.Interfaces.ICalculatedObservationsService},adas_core.Application.Services.Interfaces.IUnitService,Microsoft.AspNetCore.Http.IHttpContextAccessor,adas_core.Application.Services.Interfaces.ILocalAuditService)'
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: TreatmentService(ITreatmentRepository, ITreatmentArchiveRepository, IPatientService, IConfigObservationService, ILogger<TreatmentService>, IClientMessageService, ISubscribersService, Lazy<ICalculatedObservationsService>, IUnitService, IHttpContextAccessor, ILocalAuditService)
|
|
nameWithType: TreatmentService.TreatmentService(ITreatmentRepository, ITreatmentArchiveRepository, IPatientService, IConfigObservationService, ILogger<TreatmentService>, IClientMessageService, ISubscribersService, Lazy<ICalculatedObservationsService>, IUnitService, IHttpContextAccessor, ILocalAuditService)
|
|
fullName: adas_core.Application.Services.TreatmentService.TreatmentService(adas_core.Application.Repositories.Interfaces.ITreatmentRepository, adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository, adas_core.Application.Services.Interfaces.IPatientService, adas_core.Application.Services.Interfaces.IConfigObservationService, Microsoft.Extensions.Logging.ILogger<adas_core.Application.Services.TreatmentService>, adas_core.Application.Services.Interfaces.IClientMessageService, adas_core.Application.Services.Interfaces.ISubscribersService, System.Lazy<adas_core.Application.Services.Interfaces.ICalculatedObservationsService>, adas_core.Application.Services.Interfaces.IUnitService, Microsoft.AspNetCore.Http.IHttpContextAccessor, adas_core.Application.Services.Interfaces.ILocalAuditService)
|
|
type: Constructor
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: .ctor
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 27
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Provides business logic for managing patient treatments, including insertion,
|
|
|
|
update, deletion, archiving, pagination, and broadcasting of treatment events
|
|
|
|
to subscribed clients.
|
|
remarks: >-
|
|
This service orchestrates interactions between the treatment repository, the
|
|
|
|
patient service, configuration/calculation observation services, and audit
|
|
|
|
services. It also handles inbound HL7-like pharmacy/treatment messages
|
|
|
|
(<code>OMP_O09</code>, <code>ORM_O01</code>, <code>RAS_O17</code>) and emits broadcasts to
|
|
|
|
subscribers based on the patient's point of care.
|
|
example: []
|
|
syntax:
|
|
content: public TreatmentService(ITreatmentRepository treatmentRepository, ITreatmentArchiveRepository treatmentArchiveRepository, IPatientService patientService, IConfigObservationService configObservationService, ILogger<TreatmentService> logger, IClientMessageService clientMessageService, ISubscribersService subscribersService, Lazy<ICalculatedObservationsService> calculatedObservationsService, IUnitService unitService, IHttpContextAccessor httpContextAccessor, ILocalAuditService auditService)
|
|
parameters:
|
|
- id: treatmentRepository
|
|
type: adas_core.Application.Repositories.Interfaces.ITreatmentRepository
|
|
- id: treatmentArchiveRepository
|
|
type: adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository
|
|
- id: patientService
|
|
type: adas_core.Application.Services.Interfaces.IPatientService
|
|
- id: configObservationService
|
|
type: adas_core.Application.Services.Interfaces.IConfigObservationService
|
|
- id: logger
|
|
type: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.TreatmentService}
|
|
- id: clientMessageService
|
|
type: adas_core.Application.Services.Interfaces.IClientMessageService
|
|
- id: subscribersService
|
|
type: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
- id: calculatedObservationsService
|
|
type: System.Lazy{adas_core.Application.Services.Interfaces.ICalculatedObservationsService}
|
|
- id: unitService
|
|
type: adas_core.Application.Services.Interfaces.IUnitService
|
|
- id: httpContextAccessor
|
|
type: Microsoft.AspNetCore.Http.IHttpContextAccessor
|
|
- id: auditService
|
|
type: adas_core.Application.Services.Interfaces.ILocalAuditService
|
|
content.vb: Public Sub New(treatmentRepository As ITreatmentRepository, treatmentArchiveRepository As ITreatmentArchiveRepository, patientService As IPatientService, configObservationService As IConfigObservationService, logger As ILogger(Of TreatmentService), clientMessageService As IClientMessageService, subscribersService As ISubscribersService, calculatedObservationsService As Lazy(Of ICalculatedObservationsService), unitService As IUnitService, httpContextAccessor As IHttpContextAccessor, auditService As ILocalAuditService)
|
|
overload: adas_core.Application.Services.TreatmentService.#ctor*
|
|
nameWithType.vb: TreatmentService.New(ITreatmentRepository, ITreatmentArchiveRepository, IPatientService, IConfigObservationService, ILogger(Of TreatmentService), IClientMessageService, ISubscribersService, Lazy(Of ICalculatedObservationsService), IUnitService, IHttpContextAccessor, ILocalAuditService)
|
|
fullName.vb: adas_core.Application.Services.TreatmentService.New(adas_core.Application.Repositories.Interfaces.ITreatmentRepository, adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository, adas_core.Application.Services.Interfaces.IPatientService, adas_core.Application.Services.Interfaces.IConfigObservationService, Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.TreatmentService), adas_core.Application.Services.Interfaces.IClientMessageService, adas_core.Application.Services.Interfaces.ISubscribersService, System.Lazy(Of adas_core.Application.Services.Interfaces.ICalculatedObservationsService), adas_core.Application.Services.Interfaces.IUnitService, Microsoft.AspNetCore.Http.IHttpContextAccessor, adas_core.Application.Services.Interfaces.ILocalAuditService)
|
|
name.vb: New(ITreatmentRepository, ITreatmentArchiveRepository, IPatientService, IConfigObservationService, ILogger(Of TreatmentService), IClientMessageService, ISubscribersService, Lazy(Of ICalculatedObservationsService), IUnitService, IHttpContextAccessor, ILocalAuditService)
|
|
- uid: adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
id: GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetTreatmentsByPatientId(ObjectId)
|
|
nameWithType: TreatmentService.GetTreatmentsByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetTreatmentsByPatientId
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 49
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Retrieves all treatments associated with the specified patient identifier.
|
|
example: []
|
|
syntax:
|
|
content: public Task<IEnumerable<PatientTreatment>> GetTreatmentsByPatientId(ObjectId id)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result contains
|
|
|
|
an <xref href="System.Collections.Generic.IEnumerable%601" data-throw-if-not-resolved="false"></xref> of <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref> for the patient.
|
|
content.vb: Public Function GetTreatmentsByPatientId(id As ObjectId) As Task(Of IEnumerable(Of PatientTreatment))
|
|
overload: adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
id: Insert(adas_core.Domain.Models.PatientTreatment)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Insert(PatientTreatment)
|
|
nameWithType: TreatmentService.Insert(PatientTreatment)
|
|
fullName: adas_core.Application.Services.TreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: Insert
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 64
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Inserts a new patient treatment after applying mapping/calculation rules
|
|
|
|
and creates an audit log entry.
|
|
remarks: >-
|
|
If the treatment cannot be mapped, it is silently ignored. A broadcast
|
|
|
|
is dispatched asynchronously upon successful insertion.
|
|
example: []
|
|
syntax:
|
|
content: public Task Insert(PatientTreatment treatment)
|
|
parameters:
|
|
- id: treatment
|
|
type: adas_core.Domain.Models.PatientTreatment
|
|
description: The <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref> to insert.
|
|
return:
|
|
type: System.Threading.Tasks.Task
|
|
description: A task that represents the asynchronous insert operation.
|
|
content.vb: Public Function Insert(treatment As PatientTreatment) As Task
|
|
overload: adas_core.Application.Services.TreatmentService.Insert*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
- uid: adas_core.Application.Services.TreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
id: DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: DeleteByPatientId(ObjectId)
|
|
nameWithType: TreatmentService.DeleteByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: DeleteByPatientId
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 90
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Deletes all treatments belonging to the specified patient and creates
|
|
|
|
an audit log entry capturing the deleted state.
|
|
example: []
|
|
syntax:
|
|
content: public Task<bool> DeleteByPatientId(ObjectId id)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient whose treatments will be deleted.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result is
|
|
|
|
<a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the deletion succeeds or there is nothing to delete;
|
|
|
|
otherwise the method throws.
|
|
content.vb: Public Function DeleteByPatientId(id As ObjectId) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.TreatmentService.DeleteByPatientId*
|
|
exceptions:
|
|
- type: adas_core.Application.Exceptions.ConflictException
|
|
commentId: T:adas_core.Application.Exceptions.ConflictException
|
|
description: >-
|
|
Thrown when the patient has no treatments to delete (no record was found)
|
|
|
|
or when the underlying delete operation fails.
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
id: Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Archive(Patient)
|
|
nameWithType: TreatmentService.Archive(Patient)
|
|
fullName: adas_core.Application.Services.TreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: Archive
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 110
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Archives all treatments associated with the supplied patient.
|
|
example: []
|
|
syntax:
|
|
content: public Task Archive(Patient patient)
|
|
parameters:
|
|
- id: patient
|
|
type: adas_core.Domain.Models.MongoModels.Patient
|
|
description: The <xref href="adas_core.Domain.Models.MongoModels.Patient" data-throw-if-not-resolved="false"></xref> whose treatments will be archived.
|
|
return:
|
|
type: System.Threading.Tasks.Task
|
|
description: A task that represents the asynchronous archive operation.
|
|
content.vb: Public Function Archive(patient As Patient) As Task
|
|
overload: adas_core.Application.Services.TreatmentService.Archive*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
- uid: adas_core.Application.Services.TreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
id: ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: ArchiveByPatientId(ObjectId)
|
|
nameWithType: TreatmentService.ArchiveByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: ArchiveByPatientId
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 121
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Copies all treatments of the specified patient into the treatment archive
|
|
|
|
repository and subsequently removes them from the primary repository.
|
|
example: []
|
|
syntax:
|
|
content: public Task ArchiveByPatientId(ObjectId id)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient whose treatments will be archived.
|
|
return:
|
|
type: System.Threading.Tasks.Task
|
|
description: A task that represents the asynchronous archive operation.
|
|
content.vb: Public Function ArchiveByPatientId(id As ObjectId) As Task
|
|
overload: adas_core.Application.Services.TreatmentService.ArchiveByPatientId*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
id: UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: UpdateTreatment(PatientTreatment)
|
|
nameWithType: TreatmentService.UpdateTreatment(PatientTreatment)
|
|
fullName: adas_core.Application.Services.TreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: UpdateTreatment
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 146
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Updates an existing treatment and writes an audit log entry comparing the
|
|
|
|
previous and updated values.
|
|
example: []
|
|
syntax:
|
|
content: public Task<bool> UpdateTreatment(PatientTreatment patientTreatment)
|
|
parameters:
|
|
- id: patientTreatment
|
|
type: adas_core.Domain.Models.PatientTreatment
|
|
description: The <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref> containing the updated values.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result is
|
|
|
|
<a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the update succeeds.
|
|
content.vb: Public Function UpdateTreatment(patientTreatment As PatientTreatment) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.TreatmentService.UpdateTreatment*
|
|
exceptions:
|
|
- type: adas_core.Application.Exceptions.ConflictException
|
|
commentId: T:adas_core.Application.Exceptions.ConflictException
|
|
description: Thrown when the treatment does not exist or the update operation fails.
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
- uid: adas_core.Application.Services.TreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
id: FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindByPatientIdAsync(ObjectId)
|
|
nameWithType: TreatmentService.FindByPatientIdAsync(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindByPatientIdAsync
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 168
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Returns an asynchronous cursor over all treatments of the given patient.
|
|
example: []
|
|
syntax:
|
|
content: public Task<IAsyncCursor<PatientTreatment>> FindByPatientIdAsync(ObjectId patientId)
|
|
parameters:
|
|
- id: patientId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient.
|
|
return:
|
|
type: System.Threading.Tasks.Task{MongoDB.Driver.IAsyncCursor{adas_core.Domain.Models.PatientTreatment}}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result contains
|
|
|
|
an <xref href="MongoDB.Driver.IAsyncCursor%601" data-throw-if-not-resolved="false"></xref> of <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref>.
|
|
content.vb: Public Function FindByPatientIdAsync(patientId As ObjectId) As Task(Of IAsyncCursor(Of PatientTreatment))
|
|
overload: adas_core.Application.Services.TreatmentService.FindByPatientIdAsync*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
id: FindByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindByPatientId(ObjectId)
|
|
nameWithType: TreatmentService.FindByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindByPatientId
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 181
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Returns all treatments of the given patient as an enumerable.
|
|
example: []
|
|
syntax:
|
|
content: public Task<IEnumerable<PatientTreatment>> FindByPatientId(ObjectId patientId)
|
|
parameters:
|
|
- id: patientId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result contains
|
|
|
|
an <xref href="System.Collections.Generic.IEnumerable%601" data-throw-if-not-resolved="false"></xref> of <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref>.
|
|
content.vb: Public Function FindByPatientId(patientId As ObjectId) As Task(Of IEnumerable(Of PatientTreatment))
|
|
overload: adas_core.Application.Services.TreatmentService.FindByPatientId*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
id: GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetBolusTreatments(ObjectId)
|
|
nameWithType: TreatmentService.GetBolusTreatments(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetBolusTreatments
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 194
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Returns all bolus treatments of the specified patient.
|
|
example: []
|
|
syntax:
|
|
content: public Task<List<PatientTreatment>> GetBolusTreatments(ObjectId patientId)
|
|
parameters:
|
|
- id: patientId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientTreatment}}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result contains
|
|
|
|
a <xref href="System.Collections.Generic.List%601" data-throw-if-not-resolved="false"></xref> of <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref> representing the bolus treatments.
|
|
content.vb: Public Function GetBolusTreatments(patientId As ObjectId) As Task(Of List(Of PatientTreatment))
|
|
overload: adas_core.Application.Services.TreatmentService.GetBolusTreatments*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
|
|
id: SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SaveRequestAsync(ApiRequest)
|
|
nameWithType: TreatmentService.SaveRequestAsync(ApiRequest)
|
|
fullName: adas_core.Application.Services.TreatmentService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: SaveRequestAsync
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 204
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Asynchronous entry point that delegates to <xref href="adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public Task SaveRequestAsync(ApiRequest apiRequest)
|
|
parameters:
|
|
- id: apiRequest
|
|
type: adas_core.Domain.Models.ApiRequest
|
|
description: The inbound <xref href="adas_core.Domain.Models.ApiRequest" data-throw-if-not-resolved="false"></xref> to process.
|
|
return:
|
|
type: System.Threading.Tasks.Task
|
|
description: A task that represents the asynchronous save operation.
|
|
content.vb: Public Function SaveRequestAsync(apiRequest As ApiRequest) As Task
|
|
overload: adas_core.Application.Services.TreatmentService.SaveRequestAsync*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
|
|
- uid: adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
id: SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SaveRequest(ApiRequest)
|
|
nameWithType: TreatmentService.SaveRequest(ApiRequest)
|
|
fullName: adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: SaveRequest
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 223
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Processes an inbound API request and persists the corresponding treatments
|
|
|
|
for the referenced patient.
|
|
remarks: >-
|
|
Supported message types are <code>OMP_O09</code>, <code>ORM_O01</code> and <code>RAS_O17</code>.
|
|
|
|
The method also enforces the unit's <code>AutoAdt</code> configuration when the
|
|
|
|
request does not originate from a panel.
|
|
example: []
|
|
syntax:
|
|
content: public Task SaveRequest(ApiRequest apiRequest)
|
|
parameters:
|
|
- id: apiRequest
|
|
type: adas_core.Domain.Models.ApiRequest
|
|
description: The <xref href="adas_core.Domain.Models.ApiRequest" data-throw-if-not-resolved="false"></xref> to process.
|
|
return:
|
|
type: System.Threading.Tasks.Task
|
|
description: A task that represents the asynchronous save operation.
|
|
content.vb: Public Function SaveRequest(apiRequest As ApiRequest) As Task
|
|
overload: adas_core.Application.Services.TreatmentService.SaveRequest*
|
|
exceptions:
|
|
- type: adas_core.Application.Exceptions.ApiRequestException
|
|
commentId: T:adas_core.Application.Exceptions.ApiRequestException
|
|
description: Thrown when the patient number is missing or the request type is not supported.
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
- uid: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
id: GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetActiveTreatmentsByPatient(ObjectId)
|
|
nameWithType: TreatmentService.GetActiveTreatmentsByPatient(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetActiveTreatmentsByPatient
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 309
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Returns the active (non-canceled, in-range) treatments of the specified patient,
|
|
|
|
keeping the most recent active order per placer-order identifier.
|
|
example: []
|
|
syntax:
|
|
content: public Task<IEnumerable<PatientTreatment?>> GetActiveTreatmentsByPatient(ObjectId id)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result contains
|
|
|
|
an <xref href="System.Collections.Generic.IEnumerable%601" data-throw-if-not-resolved="false"></xref> of nullable <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref>
|
|
|
|
representing the active treatments. Treatments marked as <code>Dc</code> or
|
|
|
|
outside their validity window are excluded.
|
|
content.vb: Public Function GetActiveTreatmentsByPatient(id As ObjectId) As Task(Of IEnumerable(Of PatientTreatment))
|
|
overload: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
id: UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: UpdateManyObjectId(string, ObjectId, ObjectId)
|
|
nameWithType: TreatmentService.UpdateManyObjectId(string, ObjectId, ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.UpdateManyObjectId(string, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: UpdateManyObjectId
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 332
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Updates every occurrence of an identifier (e.g. a referenced <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref>)
|
|
|
|
in stored treatments from <code class="paramref">oldId</code> to <code class="paramref">id</code>
|
|
|
|
and broadcasts the changes to subscribers.
|
|
example: []
|
|
syntax:
|
|
content: public Task UpdateManyObjectId(string nameId, ObjectId id, ObjectId oldId)
|
|
parameters:
|
|
- id: nameId
|
|
type: System.String
|
|
description: The name of the field that holds the identifier.
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The new <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> value.
|
|
- id: oldId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The previous <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> value being replaced.
|
|
return:
|
|
type: System.Threading.Tasks.Task
|
|
description: A task that represents the asynchronous operation.
|
|
content.vb: Public Function UpdateManyObjectId(nameId As String, id As ObjectId, oldId As ObjectId) As Task
|
|
overload: adas_core.Application.Services.TreatmentService.UpdateManyObjectId*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
nameWithType.vb: TreatmentService.UpdateManyObjectId(String, ObjectId, ObjectId)
|
|
fullName.vb: adas_core.Application.Services.TreatmentService.UpdateManyObjectId(String, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
|
|
name.vb: UpdateManyObjectId(String, ObjectId, ObjectId)
|
|
- uid: adas_core.Application.Services.TreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
id: GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetPaginatedTreatments(PaginationFilter)
|
|
nameWithType: TreatmentService.GetPaginatedTreatments(PaginationFilter)
|
|
fullName: adas_core.Application.Services.TreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetPaginatedTreatments
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 348
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Returns a paginated list of treatments based on the supplied filter.
|
|
example: []
|
|
syntax:
|
|
content: public Task<PaginationResponse<PatientTreatment>> GetPaginatedTreatments(PaginationFilter filter)
|
|
parameters:
|
|
- id: filter
|
|
type: adas_core.Domain.Models.Filter.PaginationFilter
|
|
description: The <xref href="adas_core.Domain.Models.Filter.PaginationFilter" data-throw-if-not-resolved="false"></xref> containing page number and page size.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.PatientTreatment}}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result contains
|
|
|
|
a <xref href="adas_core.Domain.Models.Responses.PaginationResponse%601" data-throw-if-not-resolved="false"></xref> of <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref>.
|
|
content.vb: Public Function GetPaginatedTreatments(filter As PaginationFilter) As Task(Of PaginationResponse(Of PatientTreatment))
|
|
overload: adas_core.Application.Services.TreatmentService.GetPaginatedTreatments*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
- uid: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
id: GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetActiveTreatmentsByPatientIdAndOrder(ObjectId, string)
|
|
nameWithType: TreatmentService.GetActiveTreatmentsByPatientIdAndOrder(ObjectId, string)
|
|
fullName: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId, string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetActiveTreatmentsByPatientIdAndOrder
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 373
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: Returns the active treatments of a patient that match the specified placer order.
|
|
example: []
|
|
syntax:
|
|
content: public Task<List<PatientTreatment>> GetActiveTreatmentsByPatientIdAndOrder(ObjectId patientId, string order)
|
|
parameters:
|
|
- id: patientId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the patient.
|
|
- id: order
|
|
type: System.String
|
|
description: The placer-order identifier to filter by.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientTreatment}}
|
|
description: >-
|
|
A task that represents the asynchronous operation. The task result contains
|
|
|
|
a <xref href="System.Collections.Generic.List%601" data-throw-if-not-resolved="false"></xref> of <xref href="adas_core.Domain.Models.PatientTreatment" data-throw-if-not-resolved="false"></xref>.
|
|
content.vb: Public Function GetActiveTreatmentsByPatientIdAndOrder(patientId As ObjectId, order As String) As Task(Of List(Of PatientTreatment))
|
|
overload: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder*
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
nameWithType.vb: TreatmentService.GetActiveTreatmentsByPatientIdAndOrder(ObjectId, String)
|
|
fullName.vb: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId, String)
|
|
name.vb: GetActiveTreatmentsByPatientIdAndOrder(ObjectId, String)
|
|
- uid: adas_core.Application.Services.TreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
id: DeleteById(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.TreatmentService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: DeleteById(ObjectId)
|
|
nameWithType: TreatmentService.DeleteById(ObjectId)
|
|
fullName: adas_core.Application.Services.TreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/TreatmentService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: DeleteById
|
|
path: ../../adas-core.Application/Services/TreatmentService.cs
|
|
startLine: 387
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services
|
|
summary: >-
|
|
Deletes a treatment by its identifier and writes an audit log entry
|
|
|
|
capturing the deleted state.
|
|
example: []
|
|
syntax:
|
|
content: public Task DeleteById(ObjectId id)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> of the treatment to delete.
|
|
return:
|
|
type: System.Threading.Tasks.Task
|
|
description: A task that represents the asynchronous delete operation.
|
|
content.vb: Public Function DeleteById(id As ObjectId) As Task
|
|
overload: adas_core.Application.Services.TreatmentService.DeleteById*
|
|
exceptions:
|
|
- type: adas_core.Application.Exceptions.ConflictException
|
|
commentId: T:adas_core.Application.Exceptions.ConflictException
|
|
description: Thrown when the treatment does not exist.
|
|
implements:
|
|
- adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
references:
|
|
- uid: adas_core.Application.Services
|
|
commentId: N:adas_core.Application.Services
|
|
href: adas_core.html
|
|
name: adas_core.Application.Services
|
|
nameWithType: adas_core.Application.Services
|
|
fullName: adas_core.Application.Services
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
name: object
|
|
nameWithType: object
|
|
fullName: object
|
|
nameWithType.vb: Object
|
|
fullName.vb: Object
|
|
name.vb: Object
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
commentId: T:adas_core.Application.Services.Interfaces.ITreatmentService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html
|
|
name: ITreatmentService
|
|
nameWithType: ITreatmentService
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
- 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: System.Object.Equals(System.Object)
|
|
commentId: M:System.Object.Equals(System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
name: Equals(object)
|
|
nameWithType: object.Equals(object)
|
|
fullName: object.Equals(object)
|
|
nameWithType.vb: Object.Equals(Object)
|
|
fullName.vb: Object.Equals(Object)
|
|
name.vb: Equals(Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
name: Equals(object, object)
|
|
nameWithType: object.Equals(object, object)
|
|
fullName: object.Equals(object, object)
|
|
nameWithType.vb: Object.Equals(Object, Object)
|
|
fullName.vb: Object.Equals(Object, Object)
|
|
name.vb: Equals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.GetHashCode
|
|
commentId: M:System.Object.GetHashCode
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
name: GetHashCode()
|
|
nameWithType: object.GetHashCode()
|
|
fullName: object.GetHashCode()
|
|
nameWithType.vb: Object.GetHashCode()
|
|
fullName.vb: Object.GetHashCode()
|
|
spec.csharp:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.GetType
|
|
commentId: M:System.Object.GetType
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
name: GetType()
|
|
nameWithType: object.GetType()
|
|
fullName: object.GetType()
|
|
nameWithType.vb: Object.GetType()
|
|
fullName.vb: Object.GetType()
|
|
spec.csharp:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.MemberwiseClone
|
|
commentId: M:System.Object.MemberwiseClone
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
name: MemberwiseClone()
|
|
nameWithType: object.MemberwiseClone()
|
|
fullName: object.MemberwiseClone()
|
|
nameWithType.vb: Object.MemberwiseClone()
|
|
fullName.vb: Object.MemberwiseClone()
|
|
spec.csharp:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
name: ReferenceEquals(object, object)
|
|
nameWithType: object.ReferenceEquals(object, object)
|
|
fullName: object.ReferenceEquals(object, object)
|
|
nameWithType.vb: Object.ReferenceEquals(Object, Object)
|
|
fullName.vb: Object.ReferenceEquals(Object, Object)
|
|
name.vb: ReferenceEquals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.ToString
|
|
commentId: M:System.Object.ToString
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
name: ToString()
|
|
nameWithType: object.ToString()
|
|
fullName: object.ToString()
|
|
nameWithType.vb: Object.ToString()
|
|
fullName.vb: Object.ToString()
|
|
spec.csharp:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
parent: adas_core.Domain.Utils.ObjectUtils
|
|
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
commentId: N:adas_core.Application.Services.Interfaces
|
|
href: adas_core.html
|
|
name: adas_core.Application.Services.Interfaces
|
|
nameWithType: adas_core.Application.Services.Interfaces
|
|
fullName: adas_core.Application.Services.Interfaces
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Services.Interfaces.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Services.Interfaces.html
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.NumberUtils
|
|
commentId: T:adas_core.Domain.Utils.NumberUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.NumberUtils.html
|
|
name: NumberUtils
|
|
nameWithType: NumberUtils
|
|
fullName: adas_core.Domain.Utils.NumberUtils
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils
|
|
commentId: T:adas_core.Domain.Utils.ObjectUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.ObjectUtils.html
|
|
name: ObjectUtils
|
|
nameWithType: ObjectUtils
|
|
fullName: adas_core.Domain.Utils.ObjectUtils
|
|
- uid: adas_core.Domain.Utils
|
|
commentId: N:adas_core.Domain.Utils
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Utils
|
|
nameWithType: adas_core.Domain.Utils
|
|
fullName: adas_core.Domain.Utils
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
- uid: adas_core.Application.Services.TreatmentService.#ctor*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.#ctor
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService__ctor_adas_core_Application_Repositories_Interfaces_ITreatmentRepository_adas_core_Application_Repositories_Interfaces_ITreatmentArchiveRepository_adas_core_Application_Services_Interfaces_IPatientService_adas_core_Application_Services_Interfaces_IConfigObservationService_Microsoft_Extensions_Logging_ILogger_adas_core_Application_Services_TreatmentService__adas_core_Application_Services_Interfaces_IClientMessageService_adas_core_Application_Services_Interfaces_ISubscribersService_System_Lazy_adas_core_Application_Services_Interfaces_ICalculatedObservationsService__adas_core_Application_Services_Interfaces_IUnitService_Microsoft_AspNetCore_Http_IHttpContextAccessor_adas_core_Application_Services_Interfaces_ILocalAuditService_
|
|
name: TreatmentService
|
|
nameWithType: TreatmentService.TreatmentService
|
|
fullName: adas_core.Application.Services.TreatmentService.TreatmentService
|
|
nameWithType.vb: TreatmentService.New
|
|
fullName.vb: adas_core.Application.Services.TreatmentService.New
|
|
name.vb: New
|
|
- uid: adas_core.Application.Repositories.Interfaces.ITreatmentRepository
|
|
commentId: T:adas_core.Application.Repositories.Interfaces.ITreatmentRepository
|
|
parent: adas_core.Application.Repositories.Interfaces
|
|
href: adas_core.Application.Repositories.Interfaces.ITreatmentRepository.html
|
|
name: ITreatmentRepository
|
|
nameWithType: ITreatmentRepository
|
|
fullName: adas_core.Application.Repositories.Interfaces.ITreatmentRepository
|
|
- uid: adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository
|
|
commentId: T:adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository
|
|
parent: adas_core.Application.Repositories.Interfaces
|
|
href: adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository.html
|
|
name: ITreatmentArchiveRepository
|
|
nameWithType: ITreatmentArchiveRepository
|
|
fullName: adas_core.Application.Repositories.Interfaces.ITreatmentArchiveRepository
|
|
- uid: adas_core.Application.Services.Interfaces.IPatientService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IPatientService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.IPatientService.html
|
|
name: IPatientService
|
|
nameWithType: IPatientService
|
|
fullName: adas_core.Application.Services.Interfaces.IPatientService
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigObservationService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IConfigObservationService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.IConfigObservationService.html
|
|
name: IConfigObservationService
|
|
nameWithType: IConfigObservationService
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigObservationService
|
|
- uid: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.TreatmentService}
|
|
commentId: T:Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.TreatmentService}
|
|
parent: Microsoft.Extensions.Logging
|
|
definition: Microsoft.Extensions.Logging.ILogger`1
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
|
|
name: ILogger<TreatmentService>
|
|
nameWithType: ILogger<TreatmentService>
|
|
fullName: Microsoft.Extensions.Logging.ILogger<adas_core.Application.Services.TreatmentService>
|
|
nameWithType.vb: ILogger(Of TreatmentService)
|
|
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.TreatmentService)
|
|
name.vb: ILogger(Of TreatmentService)
|
|
spec.csharp:
|
|
- uid: Microsoft.Extensions.Logging.ILogger`1
|
|
name: ILogger
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
|
|
- name: <
|
|
- uid: adas_core.Application.Services.TreatmentService
|
|
name: TreatmentService
|
|
href: adas_core.Application.Services.TreatmentService.html
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: Microsoft.Extensions.Logging.ILogger`1
|
|
name: ILogger
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: adas_core.Application.Services.TreatmentService
|
|
name: TreatmentService
|
|
href: adas_core.Application.Services.TreatmentService.html
|
|
- name: )
|
|
- uid: adas_core.Application.Services.Interfaces.IClientMessageService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IClientMessageService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.IClientMessageService.html
|
|
name: IClientMessageService
|
|
nameWithType: IClientMessageService
|
|
fullName: adas_core.Application.Services.Interfaces.IClientMessageService
|
|
- uid: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
commentId: T:adas_core.Application.Services.Interfaces.ISubscribersService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.ISubscribersService.html
|
|
name: ISubscribersService
|
|
nameWithType: ISubscribersService
|
|
fullName: adas_core.Application.Services.Interfaces.ISubscribersService
|
|
- uid: System.Lazy{adas_core.Application.Services.Interfaces.ICalculatedObservationsService}
|
|
commentId: T:System.Lazy{adas_core.Application.Services.Interfaces.ICalculatedObservationsService}
|
|
parent: System
|
|
definition: System.Lazy`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.lazy-1
|
|
name: Lazy<ICalculatedObservationsService>
|
|
nameWithType: Lazy<ICalculatedObservationsService>
|
|
fullName: System.Lazy<adas_core.Application.Services.Interfaces.ICalculatedObservationsService>
|
|
nameWithType.vb: Lazy(Of ICalculatedObservationsService)
|
|
fullName.vb: System.Lazy(Of adas_core.Application.Services.Interfaces.ICalculatedObservationsService)
|
|
name.vb: Lazy(Of ICalculatedObservationsService)
|
|
spec.csharp:
|
|
- uid: System.Lazy`1
|
|
name: Lazy
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.lazy-1
|
|
- name: <
|
|
- uid: adas_core.Application.Services.Interfaces.ICalculatedObservationsService
|
|
name: ICalculatedObservationsService
|
|
href: adas_core.Application.Services.Interfaces.ICalculatedObservationsService.html
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Lazy`1
|
|
name: Lazy
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.lazy-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: adas_core.Application.Services.Interfaces.ICalculatedObservationsService
|
|
name: ICalculatedObservationsService
|
|
href: adas_core.Application.Services.Interfaces.ICalculatedObservationsService.html
|
|
- name: )
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IUnitService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html
|
|
name: IUnitService
|
|
nameWithType: IUnitService
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService
|
|
- uid: Microsoft.AspNetCore.Http.IHttpContextAccessor
|
|
commentId: T:Microsoft.AspNetCore.Http.IHttpContextAccessor
|
|
parent: Microsoft.AspNetCore.Http
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http.ihttpcontextaccessor
|
|
name: IHttpContextAccessor
|
|
nameWithType: IHttpContextAccessor
|
|
fullName: Microsoft.AspNetCore.Http.IHttpContextAccessor
|
|
- uid: adas_core.Application.Services.Interfaces.ILocalAuditService
|
|
commentId: T:adas_core.Application.Services.Interfaces.ILocalAuditService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
href: adas_core.Application.Services.Interfaces.ILocalAuditService.html
|
|
name: ILocalAuditService
|
|
nameWithType: ILocalAuditService
|
|
fullName: adas_core.Application.Services.Interfaces.ILocalAuditService
|
|
- uid: adas_core.Application.Repositories.Interfaces
|
|
commentId: N:adas_core.Application.Repositories.Interfaces
|
|
href: adas_core.html
|
|
name: adas_core.Application.Repositories.Interfaces
|
|
nameWithType: adas_core.Application.Repositories.Interfaces
|
|
fullName: adas_core.Application.Repositories.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.Repositories
|
|
name: Repositories
|
|
href: adas_core.Application.Repositories.html
|
|
- name: .
|
|
- uid: adas_core.Application.Repositories.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Repositories.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.Repositories
|
|
name: Repositories
|
|
href: adas_core.Application.Repositories.html
|
|
- name: .
|
|
- uid: adas_core.Application.Repositories.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Repositories.Interfaces.html
|
|
- uid: Microsoft.Extensions.Logging.ILogger`1
|
|
commentId: T:Microsoft.Extensions.Logging.ILogger`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
|
|
name: ILogger<TCategoryName>
|
|
nameWithType: ILogger<TCategoryName>
|
|
fullName: Microsoft.Extensions.Logging.ILogger<TCategoryName>
|
|
nameWithType.vb: ILogger(Of TCategoryName)
|
|
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of TCategoryName)
|
|
name.vb: ILogger(Of TCategoryName)
|
|
spec.csharp:
|
|
- uid: Microsoft.Extensions.Logging.ILogger`1
|
|
name: ILogger
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
|
|
- name: <
|
|
- name: TCategoryName
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: Microsoft.Extensions.Logging.ILogger`1
|
|
name: ILogger
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: TCategoryName
|
|
- name: )
|
|
- uid: Microsoft.Extensions.Logging
|
|
commentId: N:Microsoft.Extensions.Logging
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft
|
|
name: Microsoft.Extensions.Logging
|
|
nameWithType: Microsoft.Extensions.Logging
|
|
fullName: Microsoft.Extensions.Logging
|
|
spec.csharp:
|
|
- uid: Microsoft
|
|
name: Microsoft
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft
|
|
- name: .
|
|
- uid: Microsoft.Extensions
|
|
name: Extensions
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
|
|
- name: .
|
|
- uid: Microsoft.Extensions.Logging
|
|
name: Logging
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
|
|
spec.vb:
|
|
- uid: Microsoft
|
|
name: Microsoft
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft
|
|
- name: .
|
|
- uid: Microsoft.Extensions
|
|
name: Extensions
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
|
|
- name: .
|
|
- uid: Microsoft.Extensions.Logging
|
|
name: Logging
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
|
|
- uid: System.Lazy`1
|
|
commentId: T:System.Lazy`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.lazy-1
|
|
name: Lazy<T>
|
|
nameWithType: Lazy<T>
|
|
fullName: System.Lazy<T>
|
|
nameWithType.vb: Lazy(Of T)
|
|
fullName.vb: System.Lazy(Of T)
|
|
name.vb: Lazy(Of T)
|
|
spec.csharp:
|
|
- uid: System.Lazy`1
|
|
name: Lazy
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.lazy-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Lazy`1
|
|
name: Lazy
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.lazy-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: Microsoft.AspNetCore.Http
|
|
commentId: N:Microsoft.AspNetCore.Http
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft
|
|
name: Microsoft.AspNetCore.Http
|
|
nameWithType: Microsoft.AspNetCore.Http
|
|
fullName: Microsoft.AspNetCore.Http
|
|
spec.csharp:
|
|
- uid: Microsoft
|
|
name: Microsoft
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft
|
|
- name: .
|
|
- uid: Microsoft.AspNetCore
|
|
name: AspNetCore
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore
|
|
- name: .
|
|
- uid: Microsoft.AspNetCore.Http
|
|
name: Http
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http
|
|
spec.vb:
|
|
- uid: Microsoft
|
|
name: Microsoft
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft
|
|
- name: .
|
|
- uid: Microsoft.AspNetCore
|
|
name: AspNetCore
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore
|
|
- name: .
|
|
- uid: Microsoft.AspNetCore.Http
|
|
name: Http
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http
|
|
- uid: MongoDB.Bson.ObjectId
|
|
commentId: T:MongoDB.Bson.ObjectId
|
|
parent: MongoDB.Bson
|
|
isExternal: true
|
|
name: ObjectId
|
|
nameWithType: ObjectId
|
|
fullName: MongoDB.Bson.ObjectId
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
commentId: T:System.Collections.Generic.IEnumerable`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
name: IEnumerable<T>
|
|
nameWithType: IEnumerable<T>
|
|
fullName: System.Collections.Generic.IEnumerable<T>
|
|
nameWithType.vb: IEnumerable(Of T)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
|
|
name.vb: IEnumerable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
commentId: T:adas_core.Domain.Models.PatientTreatment
|
|
parent: adas_core.Domain.Models
|
|
href: adas_core.Domain.Models.PatientTreatment.html
|
|
name: PatientTreatment
|
|
nameWithType: PatientTreatment
|
|
fullName: adas_core.Domain.Models.PatientTreatment
|
|
- uid: adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_GetTreatmentsByPatientId_MongoDB_Bson_ObjectId_
|
|
name: GetTreatmentsByPatientId
|
|
nameWithType: TreatmentService.GetTreatmentsByPatientId
|
|
fullName: adas_core.Application.Services.TreatmentService.GetTreatmentsByPatientId
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetTreatmentsByPatientId_MongoDB_Bson_ObjectId_
|
|
name: GetTreatmentsByPatientId(ObjectId)
|
|
nameWithType: ITreatmentService.GetTreatmentsByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
name: GetTreatmentsByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetTreatmentsByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
|
|
name: GetTreatmentsByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetTreatmentsByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- uid: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
|
|
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<IEnumerable<PatientTreatment>>
|
|
nameWithType: Task<IEnumerable<PatientTreatment>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<adas_core.Domain.Models.PatientTreatment>>
|
|
nameWithType.vb: Task(Of IEnumerable(Of PatientTreatment))
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.PatientTreatment))
|
|
name.vb: Task(Of IEnumerable(Of PatientTreatment))
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: <
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: '>'
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
- name: )
|
|
- uid: 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
|
|
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: 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.TreatmentService.Insert*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.Insert
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_Insert_adas_core_Domain_Models_PatientTreatment_
|
|
name: Insert
|
|
nameWithType: TreatmentService.Insert
|
|
fullName: adas_core.Application.Services.TreatmentService.Insert
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Insert_adas_core_Domain_Models_PatientTreatment_
|
|
name: Insert(PatientTreatment)
|
|
nameWithType: ITreatmentService.Insert(PatientTreatment)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
name: Insert
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Insert_adas_core_Domain_Models_PatientTreatment_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
|
|
name: Insert
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Insert_adas_core_Domain_Models_PatientTreatment_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
- 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.Exceptions.ConflictException
|
|
commentId: T:adas_core.Application.Exceptions.ConflictException
|
|
href: adas_core.Application.Exceptions.ConflictException.html
|
|
name: ConflictException
|
|
nameWithType: ConflictException
|
|
fullName: adas_core.Application.Exceptions.ConflictException
|
|
- uid: adas_core.Application.Services.TreatmentService.DeleteByPatientId*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.DeleteByPatientId
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_DeleteByPatientId_MongoDB_Bson_ObjectId_
|
|
name: DeleteByPatientId
|
|
nameWithType: TreatmentService.DeleteByPatientId
|
|
fullName: adas_core.Application.Services.TreatmentService.DeleteByPatientId
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteByPatientId_MongoDB_Bson_ObjectId_
|
|
name: DeleteByPatientId(ObjectId)
|
|
nameWithType: ITreatmentService.DeleteByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
name: DeleteByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
|
|
name: DeleteByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- uid: System.Threading.Tasks.Task{System.Boolean}
|
|
commentId: T:System.Threading.Tasks.Task{System.Boolean}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<bool>
|
|
nameWithType: Task<bool>
|
|
fullName: System.Threading.Tasks.Task<bool>
|
|
nameWithType.vb: Task(Of Boolean)
|
|
fullName.vb: System.Threading.Tasks.Task(Of Boolean)
|
|
name.vb: Task(Of Boolean)
|
|
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.Boolean
|
|
name: bool
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- 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.Boolean
|
|
name: Boolean
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: )
|
|
- uid: adas_core.Domain.Models.MongoModels.Patient
|
|
commentId: T:adas_core.Domain.Models.MongoModels.Patient
|
|
parent: adas_core.Domain.Models.MongoModels
|
|
href: adas_core.Domain.Models.MongoModels.Patient.html
|
|
name: Patient
|
|
nameWithType: Patient
|
|
fullName: adas_core.Domain.Models.MongoModels.Patient
|
|
- uid: adas_core.Application.Services.TreatmentService.Archive*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.Archive
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_Archive_adas_core_Domain_Models_MongoModels_Patient_
|
|
name: Archive
|
|
nameWithType: TreatmentService.Archive
|
|
fullName: adas_core.Application.Services.TreatmentService.Archive
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Archive_adas_core_Domain_Models_MongoModels_Patient_
|
|
name: Archive(Patient)
|
|
nameWithType: ITreatmentService.Archive(Patient)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
name: Archive
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Archive_adas_core_Domain_Models_MongoModels_Patient_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.MongoModels.Patient
|
|
name: Patient
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
|
|
name: Archive
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Archive_adas_core_Domain_Models_MongoModels_Patient_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.MongoModels.Patient
|
|
name: Patient
|
|
- name: )
|
|
- 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.TreatmentService.ArchiveByPatientId*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.ArchiveByPatientId
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_ArchiveByPatientId_MongoDB_Bson_ObjectId_
|
|
name: ArchiveByPatientId
|
|
nameWithType: TreatmentService.ArchiveByPatientId
|
|
fullName: adas_core.Application.Services.TreatmentService.ArchiveByPatientId
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_ArchiveByPatientId_MongoDB_Bson_ObjectId_
|
|
name: ArchiveByPatientId(ObjectId)
|
|
nameWithType: ITreatmentService.ArchiveByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
name: ArchiveByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_ArchiveByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
|
|
name: ArchiveByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_ArchiveByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- uid: adas_core.Application.Services.TreatmentService.UpdateTreatment*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.UpdateTreatment
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_UpdateTreatment_adas_core_Domain_Models_PatientTreatment_
|
|
name: UpdateTreatment
|
|
nameWithType: TreatmentService.UpdateTreatment
|
|
fullName: adas_core.Application.Services.TreatmentService.UpdateTreatment
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_UpdateTreatment_adas_core_Domain_Models_PatientTreatment_
|
|
name: UpdateTreatment(PatientTreatment)
|
|
nameWithType: ITreatmentService.UpdateTreatment(PatientTreatment)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
name: UpdateTreatment
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_UpdateTreatment_adas_core_Domain_Models_PatientTreatment_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
|
|
name: UpdateTreatment
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_UpdateTreatment_adas_core_Domain_Models_PatientTreatment_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
- uid: MongoDB.Driver.IAsyncCursor`1
|
|
commentId: T:MongoDB.Driver.IAsyncCursor`1
|
|
isExternal: true
|
|
name: IAsyncCursor<TDocument>
|
|
nameWithType: IAsyncCursor<TDocument>
|
|
fullName: MongoDB.Driver.IAsyncCursor<TDocument>
|
|
nameWithType.vb: IAsyncCursor(Of TDocument)
|
|
fullName.vb: MongoDB.Driver.IAsyncCursor(Of TDocument)
|
|
name.vb: IAsyncCursor(Of TDocument)
|
|
spec.csharp:
|
|
- uid: MongoDB.Driver.IAsyncCursor`1
|
|
name: IAsyncCursor
|
|
isExternal: true
|
|
- name: <
|
|
- name: TDocument
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: MongoDB.Driver.IAsyncCursor`1
|
|
name: IAsyncCursor
|
|
isExternal: true
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: TDocument
|
|
- name: )
|
|
- uid: adas_core.Application.Services.TreatmentService.FindByPatientIdAsync*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.FindByPatientIdAsync
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_FindByPatientIdAsync_MongoDB_Bson_ObjectId_
|
|
name: FindByPatientIdAsync
|
|
nameWithType: TreatmentService.FindByPatientIdAsync
|
|
fullName: adas_core.Application.Services.TreatmentService.FindByPatientIdAsync
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientIdAsync_MongoDB_Bson_ObjectId_
|
|
name: FindByPatientIdAsync(ObjectId)
|
|
nameWithType: ITreatmentService.FindByPatientIdAsync(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
name: FindByPatientIdAsync
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientIdAsync_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
|
|
name: FindByPatientIdAsync
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientIdAsync_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- uid: System.Threading.Tasks.Task{MongoDB.Driver.IAsyncCursor{adas_core.Domain.Models.PatientTreatment}}
|
|
commentId: T:System.Threading.Tasks.Task{MongoDB.Driver.IAsyncCursor{adas_core.Domain.Models.PatientTreatment}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<IAsyncCursor<PatientTreatment>>
|
|
nameWithType: Task<IAsyncCursor<PatientTreatment>>
|
|
fullName: System.Threading.Tasks.Task<MongoDB.Driver.IAsyncCursor<adas_core.Domain.Models.PatientTreatment>>
|
|
nameWithType.vb: Task(Of IAsyncCursor(Of PatientTreatment))
|
|
fullName.vb: System.Threading.Tasks.Task(Of MongoDB.Driver.IAsyncCursor(Of adas_core.Domain.Models.PatientTreatment))
|
|
name.vb: Task(Of IAsyncCursor(Of PatientTreatment))
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- uid: MongoDB.Driver.IAsyncCursor`1
|
|
name: IAsyncCursor
|
|
isExternal: true
|
|
- name: <
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: '>'
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: MongoDB.Driver.IAsyncCursor`1
|
|
name: IAsyncCursor
|
|
isExternal: true
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
- name: )
|
|
- uid: adas_core.Application.Services.TreatmentService.FindByPatientId*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.FindByPatientId
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_FindByPatientId_MongoDB_Bson_ObjectId_
|
|
name: FindByPatientId
|
|
nameWithType: TreatmentService.FindByPatientId
|
|
fullName: adas_core.Application.Services.TreatmentService.FindByPatientId
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientId_MongoDB_Bson_ObjectId_
|
|
name: FindByPatientId(ObjectId)
|
|
nameWithType: ITreatmentService.FindByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
name: FindByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
name: FindByPatientId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- 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: adas_core.Application.Services.TreatmentService.GetBolusTreatments*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.GetBolusTreatments
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_GetBolusTreatments_MongoDB_Bson_ObjectId_
|
|
name: GetBolusTreatments
|
|
nameWithType: TreatmentService.GetBolusTreatments
|
|
fullName: adas_core.Application.Services.TreatmentService.GetBolusTreatments
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetBolusTreatments_MongoDB_Bson_ObjectId_
|
|
name: GetBolusTreatments(ObjectId)
|
|
nameWithType: ITreatmentService.GetBolusTreatments(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
name: GetBolusTreatments
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetBolusTreatments_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
|
|
name: GetBolusTreatments
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetBolusTreatments_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientTreatment}}
|
|
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientTreatment}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<List<PatientTreatment>>
|
|
nameWithType: Task<List<PatientTreatment>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.PatientTreatment>>
|
|
nameWithType.vb: Task(Of List(Of PatientTreatment))
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.PatientTreatment))
|
|
name.vb: Task(Of List(Of PatientTreatment))
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- uid: System.Collections.Generic.List`1
|
|
name: List
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
- name: <
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: '>'
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.Collections.Generic.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.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
- name: )
|
|
- uid: adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
commentId: M:adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_SaveRequest_adas_core_Domain_Models_ApiRequest_
|
|
name: SaveRequest(ApiRequest)
|
|
nameWithType: TreatmentService.SaveRequest(ApiRequest)
|
|
fullName: adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
name: SaveRequest
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_SaveRequest_adas_core_Domain_Models_ApiRequest_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.ApiRequest
|
|
name: ApiRequest
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.TreatmentService.SaveRequest(adas_core.Domain.Models.ApiRequest)
|
|
name: SaveRequest
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_SaveRequest_adas_core_Domain_Models_ApiRequest_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.ApiRequest
|
|
name: ApiRequest
|
|
- name: )
|
|
- 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.TreatmentService.SaveRequestAsync*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.SaveRequestAsync
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
|
|
name: SaveRequestAsync
|
|
nameWithType: TreatmentService.SaveRequestAsync
|
|
fullName: adas_core.Application.Services.TreatmentService.SaveRequestAsync
|
|
- 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.Exceptions.ApiRequestException
|
|
commentId: T:adas_core.Application.Exceptions.ApiRequestException
|
|
href: adas_core.Application.Exceptions.ApiRequestException.html
|
|
name: ApiRequestException
|
|
nameWithType: ApiRequestException
|
|
fullName: adas_core.Application.Exceptions.ApiRequestException
|
|
- uid: adas_core.Application.Services.TreatmentService.SaveRequest*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.SaveRequest
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_SaveRequest_adas_core_Domain_Models_ApiRequest_
|
|
name: SaveRequest
|
|
nameWithType: TreatmentService.SaveRequest
|
|
fullName: adas_core.Application.Services.TreatmentService.SaveRequest
|
|
- 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: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_GetActiveTreatmentsByPatient_MongoDB_Bson_ObjectId_
|
|
name: GetActiveTreatmentsByPatient
|
|
nameWithType: TreatmentService.GetActiveTreatmentsByPatient
|
|
fullName: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatient
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatient_MongoDB_Bson_ObjectId_
|
|
name: GetActiveTreatmentsByPatient(ObjectId)
|
|
nameWithType: ITreatmentService.GetActiveTreatmentsByPatient(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
name: GetActiveTreatmentsByPatient
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatient_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
|
|
name: GetActiveTreatmentsByPatient
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatient_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- uid: adas_core.Application.Services.TreatmentService.UpdateManyObjectId*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.UpdateManyObjectId
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_UpdateManyObjectId_System_String_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_
|
|
name: UpdateManyObjectId
|
|
nameWithType: TreatmentService.UpdateManyObjectId
|
|
fullName: adas_core.Application.Services.TreatmentService.UpdateManyObjectId
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_UpdateManyObjectId_System_String_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_
|
|
name: UpdateManyObjectId(string, ObjectId, ObjectId)
|
|
nameWithType: ITreatmentService.UpdateManyObjectId(string, ObjectId, ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(string, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
|
|
nameWithType.vb: ITreatmentService.UpdateManyObjectId(String, ObjectId, ObjectId)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(String, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
|
|
name.vb: UpdateManyObjectId(String, ObjectId, ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
name: UpdateManyObjectId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_UpdateManyObjectId_System_String_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
|
|
name: UpdateManyObjectId
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_UpdateManyObjectId_System_String_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
- 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: adas_core.Domain.Models.Filter.PaginationFilter
|
|
commentId: T:adas_core.Domain.Models.Filter.PaginationFilter
|
|
parent: adas_core.Domain.Models.Filter
|
|
href: adas_core.Domain.Models.Filter.PaginationFilter.html
|
|
name: PaginationFilter
|
|
nameWithType: PaginationFilter
|
|
fullName: adas_core.Domain.Models.Filter.PaginationFilter
|
|
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
|
|
commentId: T:adas_core.Domain.Models.Responses.PaginationResponse`1
|
|
href: adas_core.Domain.Models.Responses.PaginationResponse-1.html
|
|
name: PaginationResponse<T>
|
|
nameWithType: PaginationResponse<T>
|
|
fullName: adas_core.Domain.Models.Responses.PaginationResponse<T>
|
|
nameWithType.vb: PaginationResponse(Of T)
|
|
fullName.vb: adas_core.Domain.Models.Responses.PaginationResponse(Of T)
|
|
name.vb: PaginationResponse(Of T)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
|
|
name: PaginationResponse
|
|
href: adas_core.Domain.Models.Responses.PaginationResponse-1.html
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
|
|
name: PaginationResponse
|
|
href: adas_core.Domain.Models.Responses.PaginationResponse-1.html
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: adas_core.Application.Services.TreatmentService.GetPaginatedTreatments*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.GetPaginatedTreatments
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_GetPaginatedTreatments_adas_core_Domain_Models_Filter_PaginationFilter_
|
|
name: GetPaginatedTreatments
|
|
nameWithType: TreatmentService.GetPaginatedTreatments
|
|
fullName: adas_core.Application.Services.TreatmentService.GetPaginatedTreatments
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetPaginatedTreatments_adas_core_Domain_Models_Filter_PaginationFilter_
|
|
name: GetPaginatedTreatments(PaginationFilter)
|
|
nameWithType: ITreatmentService.GetPaginatedTreatments(PaginationFilter)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
name: GetPaginatedTreatments
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetPaginatedTreatments_adas_core_Domain_Models_Filter_PaginationFilter_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.Filter.PaginationFilter
|
|
name: PaginationFilter
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
|
|
name: GetPaginatedTreatments
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetPaginatedTreatments_adas_core_Domain_Models_Filter_PaginationFilter_
|
|
- name: (
|
|
- uid: adas_core.Domain.Models.Filter.PaginationFilter
|
|
name: PaginationFilter
|
|
- name: )
|
|
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.PatientTreatment}}
|
|
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.PatientTreatment}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<PaginationResponse<PatientTreatment>>
|
|
nameWithType: Task<PaginationResponse<PatientTreatment>>
|
|
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.Responses.PaginationResponse<adas_core.Domain.Models.PatientTreatment>>
|
|
nameWithType.vb: Task(Of PaginationResponse(Of PatientTreatment))
|
|
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.PaginationResponse(Of adas_core.Domain.Models.PatientTreatment))
|
|
name.vb: Task(Of PaginationResponse(Of PatientTreatment))
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
|
|
name: PaginationResponse
|
|
- name: <
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: '>'
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
|
|
name: PaginationResponse
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: adas_core.Domain.Models.PatientTreatment
|
|
name: PatientTreatment
|
|
- name: )
|
|
- name: )
|
|
- uid: adas_core.Domain.Models.Filter
|
|
commentId: N:adas_core.Domain.Models.Filter
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Models.Filter
|
|
nameWithType: adas_core.Domain.Models.Filter
|
|
fullName: adas_core.Domain.Models.Filter
|
|
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.Filter
|
|
name: Filter
|
|
href: adas_core.Domain.Models.Filter.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.Filter
|
|
name: Filter
|
|
href: adas_core.Domain.Models.Filter.html
|
|
- uid: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_GetActiveTreatmentsByPatientIdAndOrder_MongoDB_Bson_ObjectId_System_String_
|
|
name: GetActiveTreatmentsByPatientIdAndOrder
|
|
nameWithType: TreatmentService.GetActiveTreatmentsByPatientIdAndOrder
|
|
fullName: adas_core.Application.Services.TreatmentService.GetActiveTreatmentsByPatientIdAndOrder
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatientIdAndOrder_MongoDB_Bson_ObjectId_System_String_
|
|
name: GetActiveTreatmentsByPatientIdAndOrder(ObjectId, string)
|
|
nameWithType: ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(ObjectId, string)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId, string)
|
|
nameWithType.vb: ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(ObjectId, String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId, String)
|
|
name.vb: GetActiveTreatmentsByPatientIdAndOrder(ObjectId, String)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
name: GetActiveTreatmentsByPatientIdAndOrder
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatientIdAndOrder_MongoDB_Bson_ObjectId_System_String_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
|
|
name: GetActiveTreatmentsByPatientIdAndOrder
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatientIdAndOrder_MongoDB_Bson_ObjectId_System_String_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
- uid: adas_core.Application.Services.TreatmentService.DeleteById*
|
|
commentId: Overload:adas_core.Application.Services.TreatmentService.DeleteById
|
|
href: adas_core.Application.Services.TreatmentService.html#adas_core_Application_Services_TreatmentService_DeleteById_MongoDB_Bson_ObjectId_
|
|
name: DeleteById
|
|
nameWithType: TreatmentService.DeleteById
|
|
fullName: adas_core.Application.Services.TreatmentService.DeleteById
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.ITreatmentService
|
|
isExternal: true
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteById_MongoDB_Bson_ObjectId_
|
|
name: DeleteById(ObjectId)
|
|
nameWithType: ITreatmentService.DeleteById(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
spec.csharp:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
name: DeleteById
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteById_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
|
|
name: DeleteById
|
|
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteById_MongoDB_Bson_ObjectId_
|
|
- name: (
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: )
|