### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.Interfaces.ITreatmentService
commentId: T:adas_core.Application.Services.Interfaces.ITreatmentService
id: ITreatmentService
parent: adas_core.Application.Services.Interfaces
children:
- adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
- adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
- adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
- adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
- adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
langs:
- csharp
- vb
name: ITreatmentService
nameWithType: ITreatmentService
fullName: adas_core.Application.Services.Interfaces.ITreatmentService
type: Interface
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ITreatmentService
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 9
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
syntax:
content: 'public interface ITreatmentService : IApiRequestService'
content.vb: Public Interface ITreatmentService Inherits IApiRequestService
derivedClasses:
- adas_core.Application.Services.TreatmentService
inheritedMembers:
- adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
- adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
extensionMethods:
- System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
- System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
- System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
id: Insert(adas_core.Domain.Models.PatientTreatment)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: Insert(PatientTreatment)
nameWithType: ITreatmentService.Insert(PatientTreatment)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.Insert(adas_core.Domain.Models.PatientTreatment)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Insert
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 15
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Inserts a new record into the underlying data store.
example: []
syntax:
content: Task Insert(PatientTreatment treatment)
parameters:
- id: treatment
type: adas_core.Domain.Models.PatientTreatment
description: The patient treatment entity to be added.
return:
type: System.Threading.Tasks.Task
content.vb: Function Insert(treatment As PatientTreatment) As Task
overload: adas_core.Application.Services.Interfaces.ITreatmentService.Insert*
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
id: DeleteByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: DeleteByPatientId(ObjectId)
nameWithType: ITreatmentService.DeleteByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteByPatientId
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 21
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously deletes an entity associated with the specified patient identifier.
example: []
syntax:
content: Task DeleteByPatientId(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The representing the unique identifier of the patient whose related entity should be removed.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A containing true if the deletion was successful; otherwise, false.
content.vb: Function DeleteByPatientId(id As ObjectId) As Task(Of Boolean)
overload: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId*
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
id: DeleteById(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: DeleteById(ObjectId)
nameWithType: ITreatmentService.DeleteById(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteById
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 26
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously deletes the entity identified by the specified identifier.
example: []
syntax:
content: Task DeleteById(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the entity to delete.
return:
type: System.Threading.Tasks.Task
content.vb: Function DeleteById(id As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById*
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
id: ArchiveByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: ArchiveByPatientId(ObjectId)
nameWithType: ITreatmentService.ArchiveByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ArchiveByPatientId
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 31
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Archives records associated with the specified patient identifier.
example: []
syntax:
content: Task ArchiveByPatientId(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The ObjectId of the patient whose records should be archived.
return:
type: System.Threading.Tasks.Task
content.vb: Function ArchiveByPatientId(id As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId*
- 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)
id: Archive(adas_core.Domain.Models.MongoModels.Patient)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: Archive(Patient)
nameWithType: ITreatmentService.Archive(Patient)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Archive
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 36
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Archives the specified patient, marking them as archived in the system.
example: []
syntax:
content: Task Archive(Patient patient)
parameters:
- id: patient
type: adas_core.Domain.Models.MongoModels.Patient
description: The patient to archive.
return:
type: System.Threading.Tasks.Task
content.vb: Function Archive(patient As Patient) As Task
overload: adas_core.Application.Services.Interfaces.ITreatmentService.Archive*
- 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)
id: UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: UpdateTreatment(PatientTreatment)
nameWithType: ITreatmentService.UpdateTreatment(PatientTreatment)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment(adas_core.Domain.Models.PatientTreatment)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateTreatment
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 42
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates an existing patient treatment record in the system.
example: []
syntax:
content: Task UpdateTreatment(PatientTreatment patientTreatment)
parameters:
- id: patientTreatment
type: adas_core.Domain.Models.PatientTreatment
description: The patient treatment entity containing the updated information to be persisted.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that represents the asynchronous operation. The task result contains true if the treatment was updated successfully; otherwise, false.
content.vb: Function UpdateTreatment(patientTreatment As PatientTreatment) As Task(Of Boolean)
overload: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment*
- 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)
id: UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
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)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateManyObjectId
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 49
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates many records by replacing the specified old ObjectId with the new ObjectId in the field identified by nameId.
example: []
syntax:
content: Task UpdateManyObjectId(string nameId, ObjectId id, ObjectId oldId)
parameters:
- id: nameId
type: System.String
description: The name of the field that contains the ObjectId to be updated.
- id: id
type: MongoDB.Bson.ObjectId
description: The new ObjectId value that will replace the existing one.
- id: oldId
type: MongoDB.Bson.ObjectId
description: The existing ObjectId value to be replaced.
return:
type: System.Threading.Tasks.Task
content.vb: Function UpdateManyObjectId(nameId As String, id As ObjectId, oldId As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId*
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)
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
id: GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: GetTreatmentsByPatientId(ObjectId)
nameWithType: ITreatmentService.GetTreatmentsByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetTreatmentsByPatientId
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 55
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves all treatments associated with the specified patient identifier.
example: []
syntax:
content: Task> GetTreatmentsByPatientId(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose treatments are to be retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
description: A task that represents the asynchronous operation, containing a collection of PatientTreatment objects for the specified patient.
content.vb: Function GetTreatmentsByPatientId(id As ObjectId) As Task(Of IEnumerable(Of PatientTreatment))
overload: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId*
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
id: GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: GetActiveTreatmentsByPatient(ObjectId)
nameWithType: ITreatmentService.GetActiveTreatmentsByPatient(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetActiveTreatmentsByPatient
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 61
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the active treatment records associated with the specified patient identifier.
example: []
syntax:
content: Task> GetActiveTreatmentsByPatient(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose active treatments should be retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
description: A task that represents the asynchronous operation, containing an enumerable collection of active records, which may include null entries.
content.vb: Function GetActiveTreatmentsByPatient(id As ObjectId) As Task(Of IEnumerable(Of PatientTreatment))
overload: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient*
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
id: FindByPatientIdAsync(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: FindByPatientIdAsync(ObjectId)
nameWithType: ITreatmentService.FindByPatientIdAsync(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: FindByPatientIdAsync
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 67
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves a cursor over the records associated with the specified patient identifier.
example: []
syntax:
content: Task> FindByPatientIdAsync(ObjectId patientId)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose treatments should be returned.
return:
type: System.Threading.Tasks.Task{MongoDB.Driver.IAsyncCursor{adas_core.Domain.Models.PatientTreatment}}
description: A yielding an that iterates the matching documents.
content.vb: Function FindByPatientIdAsync(patientId As ObjectId) As Task(Of IAsyncCursor(Of PatientTreatment))
overload: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync*
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
id: FindByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: FindByPatientId(ObjectId)
nameWithType: ITreatmentService.FindByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: FindByPatientId
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 73
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all patient treatments associated with the specified patient identifier.
example: []
syntax:
content: Task> FindByPatientId(ObjectId patientId)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose treatments are being queried.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
description: A task that represents the asynchronous operation, containing a collection of instances for the specified patient.
content.vb: Function FindByPatientId(patientId As ObjectId) As Task(Of IEnumerable(Of PatientTreatment))
overload: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId*
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
id: GetBolusTreatments(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: GetBolusTreatments(ObjectId)
nameWithType: ITreatmentService.GetBolusTreatments(ObjectId)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetBolusTreatments
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 79
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the list of bolus treatments associated with the specified patient.
example: []
syntax:
content: Task> GetBolusTreatments(ObjectId patientId)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose bolus treatments are being retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientTreatment}}
description: A task that represents the asynchronous operation, containing a list of records representing the patient's bolus treatments.
content.vb: Function GetBolusTreatments(patientId As ObjectId) As Task(Of List(Of PatientTreatment))
overload: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments*
- 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)
id: GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: GetPaginatedTreatments(PaginationFilter)
nameWithType: ITreatmentService.GetPaginatedTreatments(PaginationFilter)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments(adas_core.Domain.Models.Filter.PaginationFilter)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetPaginatedTreatments
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 85
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a paginated list of patient treatments based on the specified filter criteria.
example: []
syntax:
content: Task> GetPaginatedTreatments(PaginationFilter filter)
parameters:
- id: filter
type: adas_core.Domain.Models.Filter.PaginationFilter
description: The pagination filter used to control the page number, page size, and other query options.
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, containing the paginated patient treatment results.
content.vb: Function GetPaginatedTreatments(filter As PaginationFilter) As Task(Of PaginationResponse(Of PatientTreatment))
overload: adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments*
- 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)
id: GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId,System.String)
parent: adas_core.Application.Services.Interfaces.ITreatmentService
langs:
- csharp
- vb
name: GetActiveTreatmentsByPatientIdAndOrder(ObjectId, string)
nameWithType: ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(ObjectId, string)
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId, string)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/ITreatmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetActiveTreatmentsByPatientIdAndOrder
path: ../../adas-core.Application/Services/Interfaces/ITreatmentService.cs
startLine: 92
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the list of active treatments associated with the specified patient, sorted according to the provided order parameter.
example: []
syntax:
content: Task> GetActiveTreatmentsByPatientIdAndOrder(ObjectId patientId, string order)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose active treatments are being queried.
- id: order
type: System.String
description: A string defining the ordering criteria applied to the returned treatments.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientTreatment}}
description: A task that represents the asynchronous operation, containing a list of active entries for the patient.
content.vb: Function GetActiveTreatmentsByPatientIdAndOrder(patientId As ObjectId, order As String) As Task(Of List(Of PatientTreatment))
overload: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder*
nameWithType.vb: ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(ObjectId, String)
fullName.vb: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder(MongoDB.Bson.ObjectId, String)
name.vb: GetActiveTreatmentsByPatientIdAndOrder(ObjectId, String)
references:
- uid: adas_core.Application.Services.Interfaces
commentId: N:adas_core.Application.Services.Interfaces
href: adas_core.html
name: adas_core.Application.Services.Interfaces
nameWithType: adas_core.Application.Services.Interfaces
fullName: adas_core.Application.Services.Interfaces
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
commentId: M:adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
parent: adas_core.Application.Services.Interfaces.IApiRequestService
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
name: SaveRequestAsync(ApiRequest)
nameWithType: IApiRequestService.SaveRequestAsync(ApiRequest)
fullName: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
name: SaveRequestAsync
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
name: SaveRequestAsync
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
commentId: M:adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
parent: adas_core.Application.Services.Interfaces.IApiRequestService
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
name: SaveRequest(ApiRequest)
nameWithType: IApiRequestService.SaveRequest(ApiRequest)
fullName: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
name: SaveRequest
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
name: SaveRequest
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
parent: adas_core.Domain.Utils.ObjectUtils
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Application.Services.Interfaces.IApiRequestService
commentId: T:adas_core.Application.Services.Interfaces.IApiRequestService
parent: adas_core.Application.Services.Interfaces
href: adas_core.Application.Services.Interfaces.IApiRequestService.html
name: IApiRequestService
nameWithType: IApiRequestService
fullName: adas_core.Application.Services.Interfaces.IApiRequestService
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.NumberUtils
commentId: T:adas_core.Domain.Utils.NumberUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.NumberUtils.html
name: NumberUtils
nameWithType: NumberUtils
fullName: adas_core.Domain.Utils.NumberUtils
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
isExternal: true
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils
commentId: T:adas_core.Domain.Utils.ObjectUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.ObjectUtils.html
name: ObjectUtils
nameWithType: ObjectUtils
fullName: adas_core.Domain.Utils.ObjectUtils
- uid: adas_core.Domain.Utils
commentId: N:adas_core.Domain.Utils
href: adas_core.html
name: adas_core.Domain.Utils
nameWithType: adas_core.Domain.Utils
fullName: adas_core.Domain.Utils
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
- uid: adas_core.Domain.Models.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.Interfaces.ITreatmentService.Insert*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.Insert
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Insert_adas_core_Domain_Models_PatientTreatment_
name: Insert
nameWithType: ITreatmentService.Insert
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.Insert
- 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.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
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: MongoDB.Bson.ObjectId
commentId: T:MongoDB.Bson.ObjectId
parent: MongoDB.Bson
isExternal: true
name: ObjectId
nameWithType: ObjectId
fullName: MongoDB.Bson.ObjectId
- uid: System.Threading.Tasks.Task`1
commentId: T:System.Threading.Tasks.Task`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task
nameWithType: Task
fullName: System.Threading.Tasks.Task
nameWithType.vb: Task(Of TResult)
fullName.vb: System.Threading.Tasks.Task(Of TResult)
name.vb: Task(Of TResult)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- name: TResult
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- name: TResult
- name: )
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteByPatientId_MongoDB_Bson_ObjectId_
name: DeleteByPatientId
nameWithType: ITreatmentService.DeleteByPatientId
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteByPatientId
- 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
nameWithType: Task
fullName: System.Threading.Tasks.Task
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: MongoDB.Bson
commentId: N:MongoDB.Bson
isExternal: true
name: MongoDB.Bson
nameWithType: MongoDB.Bson
fullName: MongoDB.Bson
spec.csharp:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
spec.vb:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_DeleteById_MongoDB_Bson_ObjectId_
name: DeleteById
nameWithType: ITreatmentService.DeleteById
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.DeleteById
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_ArchiveByPatientId_MongoDB_Bson_ObjectId_
name: ArchiveByPatientId
nameWithType: ITreatmentService.ArchiveByPatientId
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.ArchiveByPatientId
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.Archive*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.Archive
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_Archive_adas_core_Domain_Models_MongoModels_Patient_
name: Archive
nameWithType: ITreatmentService.Archive
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.Archive
- uid: adas_core.Domain.Models.MongoModels.Patient
commentId: T:adas_core.Domain.Models.MongoModels.Patient
parent: adas_core.Domain.Models.MongoModels
href: adas_core.Domain.Models.MongoModels.Patient.html
name: Patient
nameWithType: Patient
fullName: adas_core.Domain.Models.MongoModels.Patient
- uid: adas_core.Domain.Models.MongoModels
commentId: N:adas_core.Domain.Models.MongoModels
href: adas_core.html
name: adas_core.Domain.Models.MongoModels
nameWithType: adas_core.Domain.Models.MongoModels
fullName: adas_core.Domain.Models.MongoModels
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.MongoModels
name: MongoModels
href: adas_core.Domain.Models.MongoModels.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.MongoModels
name: MongoModels
href: adas_core.Domain.Models.MongoModels.html
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_UpdateTreatment_adas_core_Domain_Models_PatientTreatment_
name: UpdateTreatment
nameWithType: ITreatmentService.UpdateTreatment
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateTreatment
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.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: UpdateManyObjectId
nameWithType: ITreatmentService.UpdateManyObjectId
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.UpdateManyObjectId
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- 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.ITreatmentService.GetTreatmentsByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetTreatmentsByPatientId_MongoDB_Bson_ObjectId_
name: GetTreatmentsByPatientId
nameWithType: ITreatmentService.GetTreatmentsByPatientId
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetTreatmentsByPatientId
- uid: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task>
nameWithType: Task>
fullName: System.Threading.Tasks.Task>
nameWithType.vb: Task(Of IEnumerable(Of PatientTreatment))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.PatientTreatment))
name.vb: Task(Of IEnumerable(Of PatientTreatment))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- uid: adas_core.Domain.Models.PatientTreatment
name: PatientTreatment
- name: '>'
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.PatientTreatment
name: PatientTreatment
- name: )
- name: )
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatient_MongoDB_Bson_ObjectId_
name: GetActiveTreatmentsByPatient
nameWithType: ITreatmentService.GetActiveTreatmentsByPatient
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatient
- uid: MongoDB.Driver.IAsyncCursor`1
commentId: T:MongoDB.Driver.IAsyncCursor`1
isExternal: true
name: IAsyncCursor
nameWithType: IAsyncCursor
fullName: MongoDB.Driver.IAsyncCursor
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.Interfaces.ITreatmentService.FindByPatientIdAsync*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientIdAsync_MongoDB_Bson_ObjectId_
name: FindByPatientIdAsync
nameWithType: ITreatmentService.FindByPatientIdAsync
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientIdAsync
- 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>
nameWithType: Task>
fullName: System.Threading.Tasks.Task>
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.Interfaces.ITreatmentService.FindByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_FindByPatientId_MongoDB_Bson_ObjectId_
name: FindByPatientId
nameWithType: ITreatmentService.FindByPatientId
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.FindByPatientId
- uid: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetBolusTreatments_MongoDB_Bson_ObjectId_
name: GetBolusTreatments
nameWithType: ITreatmentService.GetBolusTreatments
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetBolusTreatments
- 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>
nameWithType: Task>
fullName: System.Threading.Tasks.Task>
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.Interfaces.ITreatmentService.GetPaginatedTreatments*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetPaginatedTreatments_adas_core_Domain_Models_Filter_PaginationFilter_
name: GetPaginatedTreatments
nameWithType: ITreatmentService.GetPaginatedTreatments
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetPaginatedTreatments
- 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: 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>
nameWithType: Task>
fullName: System.Threading.Tasks.Task>
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.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder*
commentId: Overload:adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder
href: adas_core.Application.Services.Interfaces.ITreatmentService.html#adas_core_Application_Services_Interfaces_ITreatmentService_GetActiveTreatmentsByPatientIdAndOrder_MongoDB_Bson_ObjectId_System_String_
name: GetActiveTreatmentsByPatientIdAndOrder
nameWithType: ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder
fullName: adas_core.Application.Services.Interfaces.ITreatmentService.GetActiveTreatmentsByPatientIdAndOrder