### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.Interfaces.IAdminPanelService commentId: T:adas_core.Application.Services.Interfaces.IAdminPanelService id: IAdminPanelService parent: adas_core.Application.Services.Interfaces children: - adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient(adas_core.Domain.Models.MongoModels.Patient) - adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) - adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient(adas_core.Domain.Models.AdmPanelRequest) - adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById(System.String) - adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteUnitById(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient(adas_core.Domain.Models.AdmPanelRequest) - adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientById(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation(adas_core.Domain.Models.PatientLocation) - adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber(System.String) - adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto(adas_core.Domain.Models.MongoModels.Unit) - adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit(adas_core.Domain.Models.MongoModels.Unit) - adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine(adas_core.Domain.Models.Medicine) - adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) - adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine(adas_core.Domain.Models.Medicine) - adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData(adas_core.Domain.Models.AdmPanelRequest,adas_core.Domain.Models.MongoModels.Patient) - adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation(adas_core.Domain.Models.AdmPanelRequest) langs: - csharp - vb name: IAdminPanelService nameWithType: IAdminPanelService fullName: adas_core.Application.Services.Interfaces.IAdminPanelService type: Interface source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: IAdminPanelService path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 7 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces syntax: content: public interface IAdminPanelService content.vb: Public Interface IAdminPanelService derivedClasses: - adas_core.Application.Services.AdminPanelService 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.IAdminPanelService.DeleteUnitById(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteUnitById(MongoDB.Bson.ObjectId) id: DeleteUnitById(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: DeleteUnitById(ObjectId) nameWithType: IAdminPanelService.DeleteUnitById(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteUnitById(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteUnitById path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 15 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Asynchronously deletes a unit identified by its unique identifier from the data store. Returns a result indicating whether the deletion was successful (e.g., true if the unit was found and removed, false otherwise). example: [] syntax: content: Task DeleteUnitById(ObjectId unitId) parameters: - id: unitId type: MongoDB.Bson.ObjectId description: The unique identifier of the unit to delete. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation. The task result is true if the unit was successfully deleted; otherwise, false if the unit was not found. content.vb: Function DeleteUnitById(unitId As ObjectId) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteUnitById* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit(adas_core.Domain.Models.MongoModels.Unit) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit(adas_core.Domain.Models.MongoModels.Unit) id: InsertUnit(adas_core.Domain.Models.MongoModels.Unit) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: InsertUnit(Unit) nameWithType: IAdminPanelService.InsertUnit(Unit) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit(adas_core.Domain.Models.MongoModels.Unit) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: InsertUnit path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 21 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Inserts a new into the data store and returns the inserted entity. example: [] syntax: content: Task InsertUnit(Unit unit) parameters: - id: unit type: adas_core.Domain.Models.MongoModels.Unit description: The to insert. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit} description: A that resolves to the inserted , or null if the insert could not be completed. content.vb: Function InsertUnit(unit As Unit) As Task(Of Unit) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient(adas_core.Domain.Models.AdmPanelRequest) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient(adas_core.Domain.Models.AdmPanelRequest) id: CreatePatient(adas_core.Domain.Models.AdmPanelRequest) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: CreatePatient(AdmPanelRequest) nameWithType: IAdminPanelService.CreatePatient(AdmPanelRequest) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient(adas_core.Domain.Models.AdmPanelRequest) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: CreatePatient path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 30 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Creates a new patient based on the provided admin panel request. example: [] syntax: content: Task CreatePatient(AdmPanelRequest apiRequest) parameters: - id: apiRequest type: adas_core.Domain.Models.AdmPanelRequest description: The admin panel request containing the data needed to create the patient. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Patient} description: A task that represents the asynchronous operation. The task result contains the created , or null if no patient was created. content.vb: Function CreatePatient(apiRequest As AdmPanelRequest) As Task(Of Patient) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation(adas_core.Domain.Models.PatientLocation) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation(adas_core.Domain.Models.PatientLocation) id: FindPatientByLocation(adas_core.Domain.Models.PatientLocation) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: FindPatientByLocation(PatientLocation) nameWithType: IAdminPanelService.FindPatientByLocation(PatientLocation) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation(adas_core.Domain.Models.PatientLocation) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FindPatientByLocation path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 36 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves the patient associated with the specified location. example: [] syntax: content: Task FindPatientByLocation(PatientLocation location) parameters: - id: location type: adas_core.Domain.Models.PatientLocation description: The location used to look up the associated patient. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Patient} description: A task that resolves to the found at the given location, or null if no patient is associated with that location. content.vb: Function FindPatientByLocation(location As PatientLocation) As Task(Of Patient) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber(System.String) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber(System.String) id: FindPatientByPatientNumber(System.String) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: FindPatientByPatientNumber(string) nameWithType: IAdminPanelService.FindPatientByPatientNumber(string) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber(string) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FindPatientByPatientNumber path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 42 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves a by their unique patient number. example: [] syntax: content: Task FindPatientByPatientNumber(string patientNumber) parameters: - id: patientNumber type: System.String description: The unique identifier of the patient to look up. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Patient} description: A that yields the matching , or null if no patient is found with the specified number. content.vb: Function FindPatientByPatientNumber(patientNumber As String) As Task(Of Patient) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber* nameWithType.vb: IAdminPanelService.FindPatientByPatientNumber(String) fullName.vb: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber(String) name.vb: FindPatientByPatientNumber(String) - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientById(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientById(MongoDB.Bson.ObjectId) id: FindPatientById(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: FindPatientById(ObjectId) nameWithType: IAdminPanelService.FindPatientById(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientById(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FindPatientById path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 50 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Asynchronously retrieves a patient from the data store using the specified unique identifier. Returns null when no patient matches the provided identifier. example: [] syntax: content: Task FindPatientById(ObjectId id) parameters: - id: id type: MongoDB.Bson.ObjectId description: The unique identifier of the patient to retrieve. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Patient} description: A task that represents the asynchronous operation. The task result contains the patient if found; otherwise, null. content.vb: Function FindPatientById(id As ObjectId) As Task(Of Patient) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientById* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient(adas_core.Domain.Models.AdmPanelRequest) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient(adas_core.Domain.Models.AdmPanelRequest) id: FindPatient(adas_core.Domain.Models.AdmPanelRequest) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: FindPatient(AdmPanelRequest) nameWithType: IAdminPanelService.FindPatient(AdmPanelRequest) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient(adas_core.Domain.Models.AdmPanelRequest) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: FindPatient path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 59 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Asynchronously finds and returns a based on the criteria provided in the admission panel request. Returns null when no matching patient is found. example: [] syntax: content: Task FindPatient(AdmPanelRequest request) parameters: - id: request type: adas_core.Domain.Models.AdmPanelRequest description: The admission panel request containing the search criteria used to locate the patient. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Patient} description: A that yields the matching if found, or null otherwise. content.vb: Function FindPatient(request As AdmPanelRequest) As Task(Of Patient) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto(adas_core.Domain.Models.MongoModels.Unit) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto(adas_core.Domain.Models.MongoModels.Unit) id: GetUnitDependencyDto(adas_core.Domain.Models.MongoModels.Unit) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: GetUnitDependencyDto(Unit) nameWithType: IAdminPanelService.GetUnitDependencyDto(Unit) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto(adas_core.Domain.Models.MongoModels.Unit) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetUnitDependencyDto path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 66 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Asynchronously retrieves the dependency information DTO for the specified unit. Returns null when no dependency information is available for the unit. example: [] syntax: content: Task GetUnitDependencyDto(Unit unit) parameters: - id: unit type: adas_core.Domain.Models.MongoModels.Unit description: The unit for which to retrieve dependency information. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.UnitInfoDto} description: A that yields the unit dependency DTO, or null if none is found. content.vb: Function GetUnitDependencyDto(unit As Unit) As Task(Of UnitInfoDto) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation(adas_core.Domain.Models.AdmPanelRequest) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation(adas_core.Domain.Models.AdmPanelRequest) id: UpdatePatientLocation(adas_core.Domain.Models.AdmPanelRequest) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: UpdatePatientLocation(AdmPanelRequest) nameWithType: IAdminPanelService.UpdatePatientLocation(AdmPanelRequest) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation(adas_core.Domain.Models.AdmPanelRequest) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdatePatientLocation path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 73 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Updates the patient location based on the provided admission panel request. example: [] syntax: content: Task UpdatePatientLocation(AdmPanelRequest request) parameters: - id: request type: adas_core.Domain.Models.AdmPanelRequest description: The admission panel request containing the patient location details to update. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation. The task result is true if the update was successful; otherwise, false. content.vb: Function UpdatePatientLocation(request As AdmPanelRequest) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData(adas_core.Domain.Models.AdmPanelRequest,adas_core.Domain.Models.MongoModels.Patient) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData(adas_core.Domain.Models.AdmPanelRequest,adas_core.Domain.Models.MongoModels.Patient) id: UpdatePatientData(adas_core.Domain.Models.AdmPanelRequest,adas_core.Domain.Models.MongoModels.Patient) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: UpdatePatientData(AdmPanelRequest, Patient) nameWithType: IAdminPanelService.UpdatePatientData(AdmPanelRequest, Patient) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData(adas_core.Domain.Models.AdmPanelRequest, adas_core.Domain.Models.MongoModels.Patient) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdatePatientData path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 80 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Updates the patient data based on the provided admission panel request, using the existing patient record as a reference. example: [] syntax: content: Task UpdatePatientData(AdmPanelRequest request, Patient oldPatient) parameters: - id: request type: adas_core.Domain.Models.AdmPanelRequest description: The admission panel request containing the updated patient data. - id: oldPatient type: adas_core.Domain.Models.MongoModels.Patient description: The existing patient record to be updated. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation. The task result is true if the patient data was successfully updated; otherwise, false. content.vb: Function UpdatePatientData(request As AdmPanelRequest, oldPatient As Patient) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient(adas_core.Domain.Models.MongoModels.Patient) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient(adas_core.Domain.Models.MongoModels.Patient) id: ArchivePatient(adas_core.Domain.Models.MongoModels.Patient) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: ArchivePatient(Patient) nameWithType: IAdminPanelService.ArchivePatient(Patient) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient(adas_core.Domain.Models.MongoModels.Patient) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ArchivePatient path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 86 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Archives the specified patient, marking them as inactive while preserving their record. example: [] syntax: content: Task ArchivePatient(Patient patient) parameters: - id: patient type: adas_core.Domain.Models.MongoModels.Patient description: The patient to be archived. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation. The task result contains true if the patient was successfully archived; otherwise, false. content.vb: Function ArchivePatient(patient As Patient) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) id: CreateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: CreateConfig(ConfigObservation) nameWithType: IAdminPanelService.CreateConfig(ConfigObservation) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: CreateConfig path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 96 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously creates a configuration based on the specified observation. example: [] syntax: content: Task CreateConfig(ConfigObservation configObservation) parameters: - id: configObservation type: adas_core.Domain.Models.MongoModels.ConfigObservation description: The observation data used to create the configuration. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous create operation, containing a value indicating whether the configuration was created successfully. content.vb: Function CreateConfig(configObservation As ConfigObservation) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) id: UpdateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: UpdateConfig(ConfigObservation) nameWithType: IAdminPanelService.UpdateConfig(ConfigObservation) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig(adas_core.Domain.Models.MongoModels.ConfigObservation) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdateConfig path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 102 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously updates the configuration based on the provided , applying any required changes derived from the observation data. example: [] syntax: content: Task UpdateConfig(ConfigObservation configObservation) parameters: - id: configObservation type: adas_core.Domain.Models.MongoModels.ConfigObservation description: The observation data used to determine and apply configuration updates. return: type: System.Threading.Tasks.Task{System.Boolean} description: A that represents the asynchronous update operation, containing a value indicating whether the configuration was successfully updated. content.vb: Function UpdateConfig(configObservation As ConfigObservation) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem(MongoDB.Bson.ObjectId) id: DeleteConfigObservationItem(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: DeleteConfigObservationItem(ObjectId) nameWithType: IAdminPanelService.DeleteConfigObservationItem(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteConfigObservationItem path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 108 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Deletes the configuration observation item identified by the specified identifier. example: [] syntax: content: Task DeleteConfigObservationItem(ObjectId id) parameters: - id: id type: MongoDB.Bson.ObjectId description: The unique identifier of the configuration observation item to delete. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation. The task result is true if the item was successfully deleted; otherwise, false. content.vb: Function DeleteConfigObservationItem(id As ObjectId) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById(MongoDB.Bson.ObjectId) id: GetMedicineById(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: GetMedicineById(ObjectId) nameWithType: IAdminPanelService.GetMedicineById(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetMedicineById path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 120 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Retrieves a entity by its unique identifier from the data store. Returns null when no medicine matches the provided identifier. example: [] syntax: content: Task GetMedicineById(ObjectId medicineId) parameters: - id: medicineId type: MongoDB.Bson.ObjectId description: The unique of the medicine to look up. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine} description: A that resolves to the matching , or null if not found. content.vb: Function GetMedicineById(medicineId As ObjectId) As Task(Of Medicine) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine(adas_core.Domain.Models.Medicine) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine(adas_core.Domain.Models.Medicine) id: PostMedicine(adas_core.Domain.Models.Medicine) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: PostMedicine(Medicine) nameWithType: IAdminPanelService.PostMedicine(Medicine) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine(adas_core.Domain.Models.Medicine) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: PostMedicine path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 126 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously creates and persists a new medicine record. example: [] syntax: content: Task PostMedicine(Medicine medicine) parameters: - id: medicine type: adas_core.Domain.Models.Medicine description: The medicine entity to be created and posted. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine} description: A task that represents the asynchronous operation, containing the newly created , or null if the operation fails. content.vb: Function PostMedicine(medicine As Medicine) As Task(Of Medicine) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine(adas_core.Domain.Models.Medicine) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine(adas_core.Domain.Models.Medicine) id: UpdateMedicine(adas_core.Domain.Models.Medicine) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: UpdateMedicine(Medicine) nameWithType: IAdminPanelService.UpdateMedicine(Medicine) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine(adas_core.Domain.Models.Medicine) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdateMedicine path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 132 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Updates an existing medicine record in the system. example: [] syntax: content: Task UpdateMedicine(Medicine medicine) parameters: - id: medicine type: adas_core.Domain.Models.Medicine description: The medicine entity containing the updated information to be persisted. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine} description: A task that represents the asynchronous operation. The task result contains the updated if found, or null if the medicine does not exist. content.vb: Function UpdateMedicine(medicine As Medicine) As Task(Of Medicine) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine* - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById(System.String) commentId: M:adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById(System.String) id: DeleteMedicineById(System.String) parent: adas_core.Application.Services.Interfaces.IAdminPanelService langs: - csharp - vb name: DeleteMedicineById(string) nameWithType: IAdminPanelService.DeleteMedicineById(string) fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById(string) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAdminPanelService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteMedicineById path: ../../adas-core.Application/Services/Interfaces/IAdminPanelService.cs startLine: 138 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Deletes a medicine identified by its unique identifier. example: [] syntax: content: Task DeleteMedicineById(string medicineId) parameters: - id: medicineId type: System.String description: The unique identifier of the medicine to delete. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation. The task result contains true if the medicine was successfully deleted; otherwise, false. content.vb: Function DeleteMedicineById(medicineId As String) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById* nameWithType.vb: IAdminPanelService.DeleteMedicineById(String) fullName.vb: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById(String) name.vb: DeleteMedicineById(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: 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.Application.Services.Interfaces.IAdminPanelService.DeleteUnitById* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteUnitById href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_DeleteUnitById_MongoDB_Bson_ObjectId_ name: DeleteUnitById nameWithType: IAdminPanelService.DeleteUnitById fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteUnitById - 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.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: 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.Domain.Models.MongoModels.Unit commentId: T:adas_core.Domain.Models.MongoModels.Unit parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.Unit.html name: Unit nameWithType: Unit fullName: adas_core.Domain.Models.MongoModels.Unit - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_InsertUnit_adas_core_Domain_Models_MongoModels_Unit_ name: InsertUnit nameWithType: IAdminPanelService.InsertUnit fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.InsertUnit - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit} 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 Unit) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.Unit) name.vb: Task(Of Unit) 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.MongoModels.Unit name: Unit - 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.MongoModels.Unit name: Unit - name: ) - uid: adas_core.Domain.Models.MongoModels commentId: N:adas_core.Domain.Models.MongoModels href: adas_core.html name: adas_core.Domain.Models.MongoModels nameWithType: adas_core.Domain.Models.MongoModels fullName: adas_core.Domain.Models.MongoModels spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html - uid: adas_core.Domain.Models.MongoModels.Patient commentId: T:adas_core.Domain.Models.MongoModels.Patient parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.Patient.html name: Patient nameWithType: Patient fullName: adas_core.Domain.Models.MongoModels.Patient - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_CreatePatient_adas_core_Domain_Models_AdmPanelRequest_ name: CreatePatient nameWithType: IAdminPanelService.CreatePatient fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.CreatePatient - uid: adas_core.Domain.Models.AdmPanelRequest commentId: T:adas_core.Domain.Models.AdmPanelRequest parent: adas_core.Domain.Models href: adas_core.Domain.Models.AdmPanelRequest.html name: AdmPanelRequest nameWithType: AdmPanelRequest fullName: adas_core.Domain.Models.AdmPanelRequest - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Patient} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Patient} 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 Patient) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.Patient) name.vb: Task(Of Patient) 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.MongoModels.Patient name: Patient - 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.MongoModels.Patient name: Patient - 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: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_FindPatientByLocation_adas_core_Domain_Models_PatientLocation_ name: FindPatientByLocation nameWithType: IAdminPanelService.FindPatientByLocation fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByLocation - 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: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_FindPatientByPatientNumber_System_String_ name: FindPatientByPatientNumber nameWithType: IAdminPanelService.FindPatientByPatientNumber fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientByPatientNumber - 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.IAdminPanelService.FindPatientById* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientById href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_FindPatientById_MongoDB_Bson_ObjectId_ name: FindPatientById nameWithType: IAdminPanelService.FindPatientById fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatientById - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_FindPatient_adas_core_Domain_Models_AdmPanelRequest_ name: FindPatient nameWithType: IAdminPanelService.FindPatient fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.FindPatient - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_GetUnitDependencyDto_adas_core_Domain_Models_MongoModels_Unit_ name: GetUnitDependencyDto nameWithType: IAdminPanelService.GetUnitDependencyDto fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.GetUnitDependencyDto - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.UnitInfoDto} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.UnitInfoDto} 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 UnitInfoDto) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.DTO.UnitInfoDto) name.vb: Task(Of UnitInfoDto) 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.DTO.UnitInfoDto name: UnitInfoDto - 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.DTO.UnitInfoDto name: UnitInfoDto - name: ) - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_UpdatePatientLocation_adas_core_Domain_Models_AdmPanelRequest_ name: UpdatePatientLocation nameWithType: IAdminPanelService.UpdatePatientLocation fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientLocation - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_UpdatePatientData_adas_core_Domain_Models_AdmPanelRequest_adas_core_Domain_Models_MongoModels_Patient_ name: UpdatePatientData nameWithType: IAdminPanelService.UpdatePatientData fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdatePatientData - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_ArchivePatient_adas_core_Domain_Models_MongoModels_Patient_ name: ArchivePatient nameWithType: IAdminPanelService.ArchivePatient fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.ArchivePatient - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_CreateConfig_adas_core_Domain_Models_MongoModels_ConfigObservation_ name: CreateConfig nameWithType: IAdminPanelService.CreateConfig fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.CreateConfig - uid: adas_core.Domain.Models.MongoModels.ConfigObservation commentId: T:adas_core.Domain.Models.MongoModels.ConfigObservation parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.ConfigObservation.html name: ConfigObservation nameWithType: ConfigObservation fullName: adas_core.Domain.Models.MongoModels.ConfigObservation - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_UpdateConfig_adas_core_Domain_Models_MongoModels_ConfigObservation_ name: UpdateConfig nameWithType: IAdminPanelService.UpdateConfig fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateConfig - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_DeleteConfigObservationItem_MongoDB_Bson_ObjectId_ name: DeleteConfigObservationItem nameWithType: IAdminPanelService.DeleteConfigObservationItem fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteConfigObservationItem - uid: adas_core.Domain.Models.Medicine commentId: T:adas_core.Domain.Models.Medicine parent: adas_core.Domain.Models href: adas_core.Domain.Models.Medicine.html name: Medicine nameWithType: Medicine fullName: adas_core.Domain.Models.Medicine - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_GetMedicineById_MongoDB_Bson_ObjectId_ name: GetMedicineById nameWithType: IAdminPanelService.GetMedicineById fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.GetMedicineById - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine} 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 Medicine) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Medicine) name.vb: Task(Of Medicine) 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.Medicine name: Medicine - 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.Medicine name: Medicine - name: ) - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_PostMedicine_adas_core_Domain_Models_Medicine_ name: PostMedicine nameWithType: IAdminPanelService.PostMedicine fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.PostMedicine - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_UpdateMedicine_adas_core_Domain_Models_Medicine_ name: UpdateMedicine nameWithType: IAdminPanelService.UpdateMedicine fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.UpdateMedicine - uid: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById* commentId: Overload:adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById href: adas_core.Application.Services.Interfaces.IAdminPanelService.html#adas_core_Application_Services_Interfaces_IAdminPanelService_DeleteMedicineById_System_String_ name: DeleteMedicineById nameWithType: IAdminPanelService.DeleteMedicineById fullName: adas_core.Application.Services.Interfaces.IAdminPanelService.DeleteMedicineById