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

1154 lines
52 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.Interfaces.IAppointmentService
commentId: T:adas_core.Application.Services.Interfaces.IAppointmentService
id: IAppointmentService
parent: adas_core.Application.Services.Interfaces
children:
- adas_core.Application.Services.Interfaces.IAppointmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
- adas_core.Application.Services.Interfaces.IAppointmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IAppointmentService.FindByLocation(adas_core.Domain.Models.PatientLocation)
- adas_core.Application.Services.Interfaces.IAppointmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPatient(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
- adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
- adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
- adas_core.Application.Services.Interfaces.IAppointmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
langs:
- csharp
- vb
name: IAppointmentService
nameWithType: IAppointmentService
fullName: adas_core.Application.Services.Interfaces.IAppointmentService
type: Interface
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: IAppointmentService
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 7
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
syntax:
content: 'public interface IAppointmentService : IApiRequestService'
content.vb: Public Interface IAppointmentService Inherits IApiRequestService
derivedClasses:
- adas_core.Application.Services.AppointmentService
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.IAppointmentService.FindByLocation(adas_core.Domain.Models.PatientLocation)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.FindByLocation(adas_core.Domain.Models.PatientLocation)
id: FindByLocation(adas_core.Domain.Models.PatientLocation)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: FindByLocation(PatientLocation)
nameWithType: IAppointmentService.FindByLocation(PatientLocation)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.FindByLocation(adas_core.Domain.Models.PatientLocation)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: FindByLocation
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 14
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves the list of patient appointments associated with the specified location.
example: []
syntax:
content: Task<List<PatientAppointment>> FindByLocation(PatientLocation location)
parameters:
- id: location
type: adas_core.Domain.Models.PatientLocation
description: The patient location used to filter and locate the relevant appointments.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientAppointment}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.PatientAppointment" data-throw-if-not-resolved="false"></xref> items matching the given location.
content.vb: Function FindByLocation(location As PatientLocation) As Task(Of List(Of PatientAppointment))
overload: adas_core.Application.Services.Interfaces.IAppointmentService.FindByLocation*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient(MongoDB.Bson.ObjectId)
id: GetByPatient(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: GetByPatient(ObjectId)
nameWithType: IAppointmentService.GetByPatient(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByPatient
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 20
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves all appointments associated with the specified patient asynchronously.
example: []
syntax:
content: Task<List<PatientAppointment>> GetByPatient(ObjectId patientId)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The identifier of the patient whose appointments are being retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientAppointment}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.PatientAppointment" data-throw-if-not-resolved="false"></xref> entries for the patient.
content.vb: Function GetByPatient(patientId As ObjectId) As Task(Of List(Of PatientAppointment))
overload: adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPatient(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPatient(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
id: GetTodayByPatient(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: GetTodayByPatient(ObjectId, CancellationToken)
nameWithType: IAppointmentService.GetTodayByPatient(ObjectId, CancellationToken)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPatient(MongoDB.Bson.ObjectId, System.Threading.CancellationToken)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetTodayByPatient
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 27
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the list of patient appointments scheduled for today for the specified patient.
example: []
syntax:
content: Task<List<PatientAppointment>> GetTodayByPatient(ObjectId patientId, CancellationToken ct = default)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose appointments are being queried.
- id: ct
type: System.Threading.CancellationToken
description: A cancellation token to observe while waiting for the task to complete.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientAppointment}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.PatientAppointment" data-throw-if-not-resolved="false"></xref> entries for the given patient for the current day.
content.vb: Function GetTodayByPatient(patientId As ObjectId, ct As CancellationToken = Nothing) As Task(Of List(Of PatientAppointment))
overload: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPatient*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
id: GetTodayByPoc(MongoDB.Bson.ObjectId,System.Threading.CancellationToken)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: GetTodayByPoc(ObjectId, CancellationToken)
nameWithType: IAppointmentService.GetTodayByPoc(ObjectId, CancellationToken)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc(MongoDB.Bson.ObjectId, System.Threading.CancellationToken)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetTodayByPoc
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 34
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the list of patient appointments scheduled for today at the specified point of care.
example: []
syntax:
content: Task<List<PatientAppointment>> GetTodayByPoc(ObjectId pocId, CancellationToken ct = default)
parameters:
- id: pocId
type: MongoDB.Bson.ObjectId
description: The identifier of the point of care whose appointments will be returned.
- id: ct
type: System.Threading.CancellationToken
description: The cancellation token used to cancel the asynchronous operation.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientAppointment}}
description: A task that represents the asynchronous operation, containing a list of today's patient appointments for the specified point of care.
content.vb: Function GetTodayByPoc(pocId As ObjectId, ct As CancellationToken = Nothing) As Task(Of List(Of PatientAppointment))
overload: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
id: FindByPatientIdAsync(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: FindByPatientIdAsync(ObjectId)
nameWithType: IAppointmentService.FindByPatientIdAsync(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.FindByPatientIdAsync(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: FindByPatientIdAsync
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 40
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously finds all <xref href="adas_core.Domain.Models.PatientAppointment" data-throw-if-not-resolved="false"></xref> records associated with the specified patient identifier.
example: []
syntax:
content: Task<IAsyncCursor<PatientAppointment>> FindByPatientIdAsync(ObjectId patientId)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose appointments are being retrieved.
return:
type: System.Threading.Tasks.Task{MongoDB.Driver.IAsyncCursor{adas_core.Domain.Models.PatientAppointment}}
description: A task that represents the asynchronous operation, containing an <xref href="MongoDB.Driver.IAsyncCursor%601" data-throw-if-not-resolved="false"></xref> for iterating over the matching <xref href="adas_core.Domain.Models.PatientAppointment" data-throw-if-not-resolved="false"></xref> documents.
content.vb: Function FindByPatientIdAsync(patientId As ObjectId) As Task(Of IAsyncCursor(Of PatientAppointment))
overload: adas_core.Application.Services.Interfaces.IAppointmentService.FindByPatientIdAsync*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
id: Archive(adas_core.Domain.Models.MongoModels.Patient)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: Archive(Patient)
nameWithType: IAppointmentService.Archive(Patient)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.Archive(adas_core.Domain.Models.MongoModels.Patient)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Archive
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 45
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously archives the specified patient, marking the record 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 whose record should be archived.
return:
type: System.Threading.Tasks.Task
content.vb: Function Archive(patient As Patient) As Task
overload: adas_core.Application.Services.Interfaces.IAppointmentService.Archive*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
id: ArchiveByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: ArchiveByPatientId(ObjectId)
nameWithType: IAppointmentService.ArchiveByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.ArchiveByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ArchiveByPatientId
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 50
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously archives records associated with the specified patient identifier.
example: []
syntax:
content: 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 related 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.IAppointmentService.ArchiveByPatientId*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
id: DeleteByPatientId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: DeleteByPatientId(ObjectId)
nameWithType: IAppointmentService.DeleteByPatientId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteByPatientId
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 55
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Deletes a record associated with the specified patient identifier.
example: []
syntax:
content: Task 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 related record should be removed.
return:
type: System.Threading.Tasks.Task
content.vb: Function DeleteByPatientId(id As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
id: ProcessApiRequest(adas_core.Domain.Models.ApiRequest,adas_core.Domain.Models.MongoModels.Patient)
parent: adas_core.Application.Services.Interfaces.IAppointmentService
langs:
- csharp
- vb
name: ProcessApiRequest(ApiRequest, Patient)
nameWithType: IAppointmentService.ProcessApiRequest(ApiRequest, Patient)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest(adas_core.Domain.Models.ApiRequest, adas_core.Domain.Models.MongoModels.Patient)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ProcessApiRequest
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 61
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Processes an incoming API request in the context of the specified patient, handling the required business logic and returning when the processing completes.
example: []
syntax:
content: Task ProcessApiRequest(ApiRequest apiRequest, Patient patient)
parameters:
- id: apiRequest
type: adas_core.Domain.Models.ApiRequest
description: The API request to be processed.
- id: patient
type: adas_core.Domain.Models.MongoModels.Patient
description: The patient associated with the API request.
return:
type: System.Threading.Tasks.Task
content.vb: Function ProcessApiRequest(apiRequest As ApiRequest, patient As Patient) As Task
overload: adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest*
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IAppointmentService.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.IAppointmentService
langs:
- csharp
- vb
name: UpdateManyObjectId(string, ObjectId, ObjectId)
nameWithType: IAppointmentService.UpdateManyObjectId(string, ObjectId, ObjectId)
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.UpdateManyObjectId(string, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IAppointmentService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateManyObjectId
path: ../../adas-core.Application/Services/Interfaces/IAppointmentService.cs
startLine: 68
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates multiple records by replacing the old <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> with the new one for the field identified by <code class="paramref">nameId</code>.
example: []
syntax:
content: Task UpdateManyObjectId(string nameId, ObjectId id, ObjectId oldId)
parameters:
- id: nameId
type: System.String
description: The name of the field whose <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> value should be updated.
- id: id
type: MongoDB.Bson.ObjectId
description: The new <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> value to set on matching records.
- id: oldId
type: MongoDB.Bson.ObjectId
description: The existing <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> 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.IAppointmentService.UpdateManyObjectId*
nameWithType.vb: IAppointmentService.UpdateManyObjectId(String, ObjectId, ObjectId)
fullName.vb: adas_core.Application.Services.Interfaces.IAppointmentService.UpdateManyObjectId(String, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
name.vb: UpdateManyObjectId(String, ObjectId, ObjectId)
references:
- uid: adas_core.Application.Services.Interfaces
commentId: N:adas_core.Application.Services.Interfaces
href: adas_core.html
name: adas_core.Application.Services.Interfaces
nameWithType: adas_core.Application.Services.Interfaces
fullName: adas_core.Application.Services.Interfaces
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
commentId: M:adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
parent: adas_core.Application.Services.Interfaces.IApiRequestService
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
name: SaveRequestAsync(ApiRequest)
nameWithType: IApiRequestService.SaveRequestAsync(ApiRequest)
fullName: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
name: SaveRequestAsync
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest)
name: SaveRequestAsync
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
commentId: M:adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
parent: adas_core.Application.Services.Interfaces.IApiRequestService
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
name: SaveRequest(ApiRequest)
nameWithType: IApiRequestService.SaveRequest(ApiRequest)
fullName: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
name: SaveRequest
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IApiRequestService.SaveRequest(adas_core.Domain.Models.ApiRequest)
name: SaveRequest
href: adas_core.Application.Services.Interfaces.IApiRequestService.html#adas_core_Application_Services_Interfaces_IApiRequestService_SaveRequest_adas_core_Domain_Models_ApiRequest_
- name: (
- uid: adas_core.Domain.Models.ApiRequest
name: ApiRequest
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
parent: adas_core.Domain.Utils.ObjectUtils
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Application.Services.Interfaces.IApiRequestService
commentId: T:adas_core.Application.Services.Interfaces.IApiRequestService
parent: adas_core.Application.Services.Interfaces
href: adas_core.Application.Services.Interfaces.IApiRequestService.html
name: IApiRequestService
nameWithType: IApiRequestService
fullName: adas_core.Application.Services.Interfaces.IApiRequestService
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.NumberUtils
commentId: T:adas_core.Domain.Utils.NumberUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.NumberUtils.html
name: NumberUtils
nameWithType: NumberUtils
fullName: adas_core.Domain.Utils.NumberUtils
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
isExternal: true
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils
commentId: T:adas_core.Domain.Utils.ObjectUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.ObjectUtils.html
name: ObjectUtils
nameWithType: ObjectUtils
fullName: adas_core.Domain.Utils.ObjectUtils
- uid: adas_core.Domain.Utils
commentId: N:adas_core.Domain.Utils
href: adas_core.html
name: adas_core.Domain.Utils
nameWithType: adas_core.Domain.Utils
fullName: adas_core.Domain.Utils
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
- uid: adas_core.Domain.Models.PatientAppointment
commentId: T:adas_core.Domain.Models.PatientAppointment
parent: adas_core.Domain.Models
href: adas_core.Domain.Models.PatientAppointment.html
name: PatientAppointment
nameWithType: PatientAppointment
fullName: adas_core.Domain.Models.PatientAppointment
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.FindByLocation*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.FindByLocation
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_FindByLocation_adas_core_Domain_Models_PatientLocation_
name: FindByLocation
nameWithType: IAppointmentService.FindByLocation
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.FindByLocation
- uid: adas_core.Domain.Models.PatientLocation
commentId: T:adas_core.Domain.Models.PatientLocation
parent: adas_core.Domain.Models
href: adas_core.Domain.Models.PatientLocation.html
name: PatientLocation
nameWithType: PatientLocation
fullName: adas_core.Domain.Models.PatientLocation
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientAppointment}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.PatientAppointment}}
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<PatientAppointment>>
nameWithType: Task<List<PatientAppointment>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.PatientAppointment>>
nameWithType.vb: Task(Of List(Of PatientAppointment))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.PatientAppointment))
name.vb: Task(Of List(Of PatientAppointment))
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.PatientAppointment
name: PatientAppointment
- 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.PatientAppointment
name: PatientAppointment
- name: )
- name: )
- uid: adas_core.Domain.Models
commentId: N:adas_core.Domain.Models
href: adas_core.html
name: adas_core.Domain.Models
nameWithType: adas_core.Domain.Models
fullName: adas_core.Domain.Models
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- uid: System.Threading.Tasks.Task`1
commentId: T:System.Threading.Tasks.Task`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<TResult>
nameWithType: Task<TResult>
fullName: System.Threading.Tasks.Task<TResult>
nameWithType.vb: Task(Of TResult)
fullName.vb: System.Threading.Tasks.Task(Of TResult)
name.vb: Task(Of TResult)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- name: TResult
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- name: TResult
- name: )
- uid: System.Threading.Tasks
commentId: N:System.Threading.Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Threading.Tasks
nameWithType: System.Threading.Tasks
fullName: System.Threading.Tasks
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_GetByPatient_MongoDB_Bson_ObjectId_
name: GetByPatient
nameWithType: IAppointmentService.GetByPatient
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.GetByPatient
- uid: MongoDB.Bson.ObjectId
commentId: T:MongoDB.Bson.ObjectId
parent: MongoDB.Bson
isExternal: true
name: ObjectId
nameWithType: ObjectId
fullName: MongoDB.Bson.ObjectId
- 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.IAppointmentService.GetTodayByPatient*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPatient
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_GetTodayByPatient_MongoDB_Bson_ObjectId_System_Threading_CancellationToken_
name: GetTodayByPatient
nameWithType: IAppointmentService.GetTodayByPatient
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPatient
- uid: System.Threading.CancellationToken
commentId: T:System.Threading.CancellationToken
parent: System.Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.cancellationtoken
name: CancellationToken
nameWithType: CancellationToken
fullName: System.Threading.CancellationToken
- uid: System.Threading
commentId: N:System.Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Threading
nameWithType: System.Threading
fullName: System.Threading
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_GetTodayByPoc_MongoDB_Bson_ObjectId_System_Threading_CancellationToken_
name: GetTodayByPoc
nameWithType: IAppointmentService.GetTodayByPoc
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.GetTodayByPoc
- 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.Interfaces.IAppointmentService.FindByPatientIdAsync*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.FindByPatientIdAsync
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_FindByPatientIdAsync_MongoDB_Bson_ObjectId_
name: FindByPatientIdAsync
nameWithType: IAppointmentService.FindByPatientIdAsync
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.FindByPatientIdAsync
- uid: System.Threading.Tasks.Task{MongoDB.Driver.IAsyncCursor{adas_core.Domain.Models.PatientAppointment}}
commentId: T:System.Threading.Tasks.Task{MongoDB.Driver.IAsyncCursor{adas_core.Domain.Models.PatientAppointment}}
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<PatientAppointment>>
nameWithType: Task<IAsyncCursor<PatientAppointment>>
fullName: System.Threading.Tasks.Task<MongoDB.Driver.IAsyncCursor<adas_core.Domain.Models.PatientAppointment>>
nameWithType.vb: Task(Of IAsyncCursor(Of PatientAppointment))
fullName.vb: System.Threading.Tasks.Task(Of MongoDB.Driver.IAsyncCursor(Of adas_core.Domain.Models.PatientAppointment))
name.vb: Task(Of IAsyncCursor(Of PatientAppointment))
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.PatientAppointment
name: PatientAppointment
- 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.PatientAppointment
name: PatientAppointment
- name: )
- name: )
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.Archive*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.Archive
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_Archive_adas_core_Domain_Models_MongoModels_Patient_
name: Archive
nameWithType: IAppointmentService.Archive
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.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: 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.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.IAppointmentService.ArchiveByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.ArchiveByPatientId
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_ArchiveByPatientId_MongoDB_Bson_ObjectId_
name: ArchiveByPatientId
nameWithType: IAppointmentService.ArchiveByPatientId
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.ArchiveByPatientId
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_DeleteByPatientId_MongoDB_Bson_ObjectId_
name: DeleteByPatientId
nameWithType: IAppointmentService.DeleteByPatientId
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.DeleteByPatientId
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_ProcessApiRequest_adas_core_Domain_Models_ApiRequest_adas_core_Domain_Models_MongoModels_Patient_
name: ProcessApiRequest
nameWithType: IAppointmentService.ProcessApiRequest
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.ProcessApiRequest
- uid: adas_core.Domain.Models.ApiRequest
commentId: T:adas_core.Domain.Models.ApiRequest
parent: adas_core.Domain.Models
href: adas_core.Domain.Models.ApiRequest.html
name: ApiRequest
nameWithType: ApiRequest
fullName: adas_core.Domain.Models.ApiRequest
- uid: adas_core.Application.Services.Interfaces.IAppointmentService.UpdateManyObjectId*
commentId: Overload:adas_core.Application.Services.Interfaces.IAppointmentService.UpdateManyObjectId
href: adas_core.Application.Services.Interfaces.IAppointmentService.html#adas_core_Application_Services_Interfaces_IAppointmentService_UpdateManyObjectId_System_String_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_
name: UpdateManyObjectId
nameWithType: IAppointmentService.UpdateManyObjectId
fullName: adas_core.Application.Services.Interfaces.IAppointmentService.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