### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService commentId: T:adas_core.Application.Services.Interfaces.IPatientCarePlanService id: IPatientCarePlanService parent: adas_core.Application.Services.Interfaces children: - adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.Masters.OptionList}) - adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll - adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByPatientId(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByUserId(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync(adas_core.Domain.Models.MongoModels.PatientCarePlan) - adas_core.Application.Services.Interfaces.IPatientCarePlanService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId) langs: - csharp - vb name: IPatientCarePlanService nameWithType: IPatientCarePlanService fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService type: Interface source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: IPatientCarePlanService path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 6 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces syntax: content: public interface IPatientCarePlanService content.vb: Public Interface IPatientCarePlanService derivedClasses: - adas_core.Application.Services.PatientCarePlanService 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.IPatientCarePlanService.FindByPatientId(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByPatientId(MongoDB.Bson.ObjectId) id: FindByPatientId(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IPatientCarePlanService langs: - csharp - vb name: FindByPatientId(ObjectId) nameWithType: IPatientCarePlanService.FindByPatientId(ObjectId) fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByPatientId(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FindByPatientId path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 13 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Retrieves a list of patient care plans 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 care plans are being retrieved. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PatientCarePlan}} description: A task that represents the asynchronous operation, containing a list of records for the given patient. content.vb: Function FindByPatientId(patientId As ObjectId) As Task(Of List(Of PatientCarePlan)) overload: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByPatientId* - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByUserId(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByUserId(MongoDB.Bson.ObjectId) id: FindByUserId(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IPatientCarePlanService langs: - csharp - vb name: FindByUserId(ObjectId) nameWithType: IPatientCarePlanService.FindByUserId(ObjectId) fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByUserId(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FindByUserId path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 19 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Retrieves a list of patient care plans associated with the specified user identifier. example: [] syntax: content: Task> FindByUserId(ObjectId userId) parameters: - id: userId type: MongoDB.Bson.ObjectId description: The unique identifier of the user whose patient care plans are being retrieved. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PatientCarePlan}} description: A task that represents the asynchronous operation. The task result contains a list of patient care plans associated with the user. content.vb: Function FindByUserId(userId As ObjectId) As Task(Of List(Of PatientCarePlan)) overload: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByUserId* - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll commentId: M:adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll id: FindAll parent: adas_core.Application.Services.Interfaces.IPatientCarePlanService langs: - csharp - vb name: FindAll() nameWithType: IPatientCarePlanService.FindAll() fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll() type: Method source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FindAll path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 24 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Retrieves all patient care plans from the system. example: [] syntax: content: Task> FindAll() return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PatientCarePlan}} description: A task containing a list of all records. content.vb: Function FindAll() As Task(Of List(Of PatientCarePlan)) overload: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll* - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync(adas_core.Domain.Models.MongoModels.PatientCarePlan) commentId: M:adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync(adas_core.Domain.Models.MongoModels.PatientCarePlan) id: InsertOneAsync(adas_core.Domain.Models.MongoModels.PatientCarePlan) parent: adas_core.Application.Services.Interfaces.IPatientCarePlanService langs: - csharp - vb name: InsertOneAsync(PatientCarePlan) nameWithType: IPatientCarePlanService.InsertOneAsync(PatientCarePlan) fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync(adas_core.Domain.Models.MongoModels.PatientCarePlan) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: InsertOneAsync path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 29 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously inserts a single patient care plan into the underlying data store. example: [] syntax: content: Task InsertOneAsync(PatientCarePlan patientCarePlan) parameters: - id: patientCarePlan type: adas_core.Domain.Models.MongoModels.PatientCarePlan description: The patient care plan to insert. return: type: System.Threading.Tasks.Task content.vb: Function InsertOneAsync(patientCarePlan As PatientCarePlan) As Task overload: adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync* - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.Masters.OptionList}) commentId: M:adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.Masters.OptionList}) id: ArchiveCarePlanFromJob(adas_core.Domain.Models.MongoModels.Patient,System.Collections.Generic.List{adas_core.Domain.Models.Masters.OptionList}) parent: adas_core.Application.Services.Interfaces.IPatientCarePlanService langs: - csharp - vb name: ArchiveCarePlanFromJob(Patient, List) nameWithType: IPatientCarePlanService.ArchiveCarePlanFromJob(Patient, List) fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ArchiveCarePlanFromJob path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 35 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Archives the care plan associated with a finished procedure for the specified patient, processing the provided list of items to be archived. example: [] syntax: content: Task ArchiveCarePlanFromJob(Patient patientWithFinishedProcedure, List itemsToArchive) parameters: - id: patientWithFinishedProcedure type: adas_core.Domain.Models.MongoModels.Patient description: The patient whose procedure has been completed and whose care plan should be archived. - id: itemsToArchive type: System.Collections.Generic.List{adas_core.Domain.Models.Masters.OptionList} description: The collection of option list items to be archived as part of the care plan archival process. return: type: System.Threading.Tasks.Task content.vb: Function ArchiveCarePlanFromJob(patientWithFinishedProcedure As Patient, itemsToArchive As List(Of OptionList)) As Task overload: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob* nameWithType.vb: IPatientCarePlanService.ArchiveCarePlanFromJob(Patient, List(Of OptionList)) fullName.vb: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob(adas_core.Domain.Models.MongoModels.Patient, System.Collections.Generic.List(Of adas_core.Domain.Models.Masters.OptionList)) name.vb: ArchiveCarePlanFromJob(Patient, List(Of OptionList)) - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId(MongoDB.Bson.ObjectId) id: ArchiveByPatientId(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IPatientCarePlanService langs: - csharp - vb name: ArchiveByPatientId(ObjectId) nameWithType: IPatientCarePlanService.ArchiveByPatientId(ObjectId) fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ArchiveByPatientId path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 41 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 patientid) parameters: - id: patientid type: MongoDB.Bson.ObjectId description: The unique identifier of the patient whose records are to be archived. return: type: System.Threading.Tasks.Task content.vb: Function ArchiveByPatientId(patientid As ObjectId) As Task overload: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId* - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.UpdateManyObjectId(System.String,MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IPatientCarePlanService.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.IPatientCarePlanService langs: - csharp - vb name: UpdateManyObjectId(string, ObjectId, ObjectId) nameWithType: IPatientCarePlanService.UpdateManyObjectId(string, ObjectId, ObjectId) fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.UpdateManyObjectId(string, MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdateManyObjectId path: ../../adas-core.Application/Services/Interfaces/IPatientCarePlanService.cs startLine: 48 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Updates the ObjectId references from the specified old identifier to a new one across multiple records associated with the given patient. example: [] syntax: content: Task UpdateManyObjectId(string patientid, ObjectId patientId, ObjectId oldId) parameters: - id: patientid type: System.String description: The string identifier of the patient whose related records will be updated. - id: patientId type: MongoDB.Bson.ObjectId description: The ObjectId of the patient used to locate the records to update. - id: oldId type: MongoDB.Bson.ObjectId description: The existing ObjectId value to be replaced in the matched records. return: type: System.Threading.Tasks.Task content.vb: Function UpdateManyObjectId(patientid As String, patientId As ObjectId, oldId As ObjectId) As Task overload: adas_core.Application.Services.Interfaces.IPatientCarePlanService.UpdateManyObjectId* nameWithType.vb: IPatientCarePlanService.UpdateManyObjectId(String, ObjectId, ObjectId) fullName.vb: adas_core.Application.Services.Interfaces.IPatientCarePlanService.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: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) parent: adas_core.Domain.Utils.ObjectUtils definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils commentId: T:adas_core.Domain.Utils.NumberUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.NumberUtils.html name: NumberUtils nameWithType: NumberUtils fullName: adas_core.Domain.Utils.NumberUtils - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) isExternal: true href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils commentId: T:adas_core.Domain.Utils.ObjectUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.ObjectUtils.html name: ObjectUtils nameWithType: ObjectUtils fullName: adas_core.Domain.Utils.ObjectUtils - uid: adas_core.Domain.Utils commentId: N:adas_core.Domain.Utils href: adas_core.html name: adas_core.Domain.Utils nameWithType: adas_core.Domain.Utils fullName: adas_core.Domain.Utils spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html - uid: adas_core.Domain.Models.MongoModels.PatientCarePlan commentId: T:adas_core.Domain.Models.MongoModels.PatientCarePlan parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.PatientCarePlan.html name: PatientCarePlan nameWithType: PatientCarePlan fullName: adas_core.Domain.Models.MongoModels.PatientCarePlan - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByPatientId* commentId: Overload:adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByPatientId href: adas_core.Application.Services.Interfaces.IPatientCarePlanService.html#adas_core_Application_Services_Interfaces_IPatientCarePlanService_FindByPatientId_MongoDB_Bson_ObjectId_ name: FindByPatientId nameWithType: IPatientCarePlanService.FindByPatientId fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByPatientId - uid: MongoDB.Bson.ObjectId commentId: T:MongoDB.Bson.ObjectId parent: MongoDB.Bson isExternal: true name: ObjectId nameWithType: ObjectId fullName: MongoDB.Bson.ObjectId - uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PatientCarePlan}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PatientCarePlan}} 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 PatientCarePlan)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.PatientCarePlan)) name.vb: Task(Of List(Of PatientCarePlan)) 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.MongoModels.PatientCarePlan name: PatientCarePlan - 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.MongoModels.PatientCarePlan name: PatientCarePlan - name: ) - name: ) - uid: adas_core.Domain.Models.MongoModels commentId: N:adas_core.Domain.Models.MongoModels href: adas_core.html name: adas_core.Domain.Models.MongoModels nameWithType: adas_core.Domain.Models.MongoModels fullName: adas_core.Domain.Models.MongoModels spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html - uid: MongoDB.Bson commentId: N:MongoDB.Bson isExternal: true name: MongoDB.Bson nameWithType: MongoDB.Bson fullName: MongoDB.Bson spec.csharp: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true spec.vb: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true - uid: System.Threading.Tasks.Task`1 commentId: T:System.Threading.Tasks.Task`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task 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: 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.IPatientCarePlanService.FindByUserId* commentId: Overload:adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByUserId href: adas_core.Application.Services.Interfaces.IPatientCarePlanService.html#adas_core_Application_Services_Interfaces_IPatientCarePlanService_FindByUserId_MongoDB_Bson_ObjectId_ name: FindByUserId nameWithType: IPatientCarePlanService.FindByUserId fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindByUserId - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll* commentId: Overload:adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll href: adas_core.Application.Services.Interfaces.IPatientCarePlanService.html#adas_core_Application_Services_Interfaces_IPatientCarePlanService_FindAll name: FindAll nameWithType: IPatientCarePlanService.FindAll fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.FindAll - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync* commentId: Overload:adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync href: adas_core.Application.Services.Interfaces.IPatientCarePlanService.html#adas_core_Application_Services_Interfaces_IPatientCarePlanService_InsertOneAsync_adas_core_Domain_Models_MongoModels_PatientCarePlan_ name: InsertOneAsync nameWithType: IPatientCarePlanService.InsertOneAsync fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.InsertOneAsync - uid: System.Threading.Tasks.Task commentId: T:System.Threading.Tasks.Task parent: System.Threading.Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task name: Task nameWithType: Task fullName: System.Threading.Tasks.Task - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob* commentId: Overload:adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob href: adas_core.Application.Services.Interfaces.IPatientCarePlanService.html#adas_core_Application_Services_Interfaces_IPatientCarePlanService_ArchiveCarePlanFromJob_adas_core_Domain_Models_MongoModels_Patient_System_Collections_Generic_List_adas_core_Domain_Models_Masters_OptionList__ name: ArchiveCarePlanFromJob nameWithType: IPatientCarePlanService.ArchiveCarePlanFromJob fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveCarePlanFromJob - 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.Collections.Generic.List{adas_core.Domain.Models.Masters.OptionList} commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.Masters.OptionList} parent: System.Collections.Generic definition: System.Collections.Generic.List`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of OptionList) fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.Masters.OptionList) name.vb: List(Of OptionList) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: adas_core.Domain.Models.Masters.OptionList name: OptionList href: adas_core.Domain.Models.Masters.OptionList.html - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.Masters.OptionList name: OptionList href: adas_core.Domain.Models.Masters.OptionList.html - name: ) - uid: System.Collections.Generic.List`1 commentId: T:System.Collections.Generic.List`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of T) fullName.vb: System.Collections.Generic.List(Of T) name.vb: List(Of T) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic commentId: N:System.Collections.Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections.Generic nameWithType: System.Collections.Generic fullName: System.Collections.Generic spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId* commentId: Overload:adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId href: adas_core.Application.Services.Interfaces.IPatientCarePlanService.html#adas_core_Application_Services_Interfaces_IPatientCarePlanService_ArchiveByPatientId_MongoDB_Bson_ObjectId_ name: ArchiveByPatientId nameWithType: IPatientCarePlanService.ArchiveByPatientId fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.ArchiveByPatientId - uid: adas_core.Application.Services.Interfaces.IPatientCarePlanService.UpdateManyObjectId* commentId: Overload:adas_core.Application.Services.Interfaces.IPatientCarePlanService.UpdateManyObjectId href: adas_core.Application.Services.Interfaces.IPatientCarePlanService.html#adas_core_Application_Services_Interfaces_IPatientCarePlanService_UpdateManyObjectId_System_String_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_ name: UpdateManyObjectId nameWithType: IPatientCarePlanService.UpdateManyObjectId fullName: adas_core.Application.Services.Interfaces.IPatientCarePlanService.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