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

1522 lines
66 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.Interfaces.IMedicineService
commentId: T:adas_core.Application.Services.Interfaces.IMedicineService
id: IMedicineService
parent: adas_core.Application.Services.Interfaces
children:
- adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IMedicineService.GetAll
- adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes
- adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups
- adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames
- adas_core.Application.Services.Interfaces.IMedicineService.GetAllTypes
- adas_core.Application.Services.Interfaces.IMedicineService.GetByCode(System.String)
- adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote(System.Collections.Generic.List{System.String})
- adas_core.Application.Services.Interfaces.IMedicineService.GetByName(System.String)
- adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments(System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment})
- adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines(adas_core.Domain.Models.Filter.PaginationFilter)
- adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine(adas_core.Domain.Models.Medicine)
- adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine(adas_core.Domain.Models.Medicine)
langs:
- csharp
- vb
name: IMedicineService
nameWithType: IMedicineService
fullName: adas_core.Application.Services.Interfaces.IMedicineService
type: Interface
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: IMedicineService
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 7
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
syntax:
content: public interface IMedicineService
content.vb: Public Interface IMedicineService
derivedClasses:
- adas_core.Application.Services.MedicineService
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.IMedicineService.GetByCode(System.String)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetByCode(System.String)
id: GetByCode(System.String)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetByCode(string)
nameWithType: IMedicineService.GetByCode(string)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetByCode(string)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByCode
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 15
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: >-
Asynchronously retrieves a <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> entity by its unique code identifier.
Returns <code>null</code> when no matching medicine is found.
example: []
syntax:
content: Task<Medicine?> GetByCode(string code)
parameters:
- id: code
type: System.String
description: The unique code used to look up the medicine.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine}
description: A task that represents the asynchronous operation, containing the matching <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> or <code>null</code> if not found.
content.vb: Function GetByCode(code As String) As Task(Of Medicine)
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetByCode*
nameWithType.vb: IMedicineService.GetByCode(String)
fullName.vb: adas_core.Application.Services.Interfaces.IMedicineService.GetByCode(String)
name.vb: GetByCode(String)
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote(System.Collections.Generic.List{System.String})
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote(System.Collections.Generic.List{System.String})
id: GetByCodeOrNote(System.Collections.Generic.List{System.String})
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetByCodeOrNote(List<string>)
nameWithType: IMedicineService.GetByCodeOrNote(List<string>)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote(System.Collections.Generic.List<string>)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByCodeOrNote
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 21
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a list of medicines that match the provided codes or notes.
example: []
syntax:
content: Task<List<Medicine>> GetByCodeOrNote(List<string> codeNote)
parameters:
- id: codeNote
type: System.Collections.Generic.List{System.String}
description: A list of strings representing the codes or notes used to look up medicines.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.Medicine}}
description: A task that represents the asynchronous operation. The task result contains a list of <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> objects matching the provided codes or notes.
content.vb: Function GetByCodeOrNote(codeNote As List(Of String)) As Task(Of List(Of Medicine))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote*
nameWithType.vb: IMedicineService.GetByCodeOrNote(List(Of String))
fullName.vb: adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote(System.Collections.Generic.List(Of String))
name.vb: GetByCodeOrNote(List(Of String))
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetByName(System.String)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetByName(System.String)
id: GetByName(System.String)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetByName(string)
nameWithType: IMedicineService.GetByName(string)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetByName(string)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByName
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 27
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a medicine by its name, returning null if no matching medicine is found.
example: []
syntax:
content: Task<Medicine?> GetByName(string name)
parameters:
- id: name
type: System.String
description: The name of the medicine to look up.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine}
description: A task that represents the asynchronous operation, containing the matching <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> or null if not found.
content.vb: Function GetByName(name As String) As Task(Of Medicine)
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetByName*
nameWithType.vb: IMedicineService.GetByName(String)
fullName.vb: adas_core.Application.Services.Interfaces.IMedicineService.GetByName(String)
name.vb: GetByName(String)
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments(System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment})
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments(System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment})
id: GetMedicinesOfTreatments(System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment})
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetMedicinesOfTreatments(IEnumerable<PatientTreatment?>)
nameWithType: IMedicineService.GetMedicinesOfTreatments(IEnumerable<PatientTreatment?>)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments(System.Collections.Generic.IEnumerable<adas_core.Domain.Models.PatientTreatment?>)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetMedicinesOfTreatments
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 33
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the medicines associated with the specified patient treatments.
example: []
syntax:
content: Task<IEnumerable<Medicine>> GetMedicinesOfTreatments(IEnumerable<PatientTreatment?> treatments)
parameters:
- id: treatments
type: System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}
description: The collection of patient treatments, which may include null entries, whose medicines are to be obtained.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.Medicine}}
description: A task that represents the asynchronous operation, containing the collection of medicines linked to the provided treatments.
content.vb: Function GetMedicinesOfTreatments(treatments As IEnumerable(Of PatientTreatment)) As Task(Of IEnumerable(Of Medicine))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments*
nameWithType.vb: IMedicineService.GetMedicinesOfTreatments(IEnumerable(Of PatientTreatment))
fullName.vb: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments(System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.PatientTreatment))
name.vb: GetMedicinesOfTreatments(IEnumerable(Of PatientTreatment))
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient(MongoDB.Bson.ObjectId)
id: GetActiveMedicinesByPatient(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetActiveMedicinesByPatient(ObjectId)
nameWithType: IMedicineService.GetActiveMedicinesByPatient(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetActiveMedicinesByPatient
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 39
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves the collection of active medicines associated with the specified patient.
example: []
syntax:
content: Task<IEnumerable<Medicine>> GetActiveMedicinesByPatient(ObjectId patientId)
parameters:
- id: patientId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the patient whose active medicines are being queried.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.Medicine}}
description: A task that represents the asynchronous operation, containing an enumerable collection of active <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> records for the patient.
content.vb: Function GetActiveMedicinesByPatient(patientId As ObjectId) As Task(Of IEnumerable(Of Medicine))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines(adas_core.Domain.Models.Filter.PaginationFilter)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines(adas_core.Domain.Models.Filter.PaginationFilter)
id: GetPaginatedMedicines(adas_core.Domain.Models.Filter.PaginationFilter)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetPaginatedMedicines(PaginationFilter)
nameWithType: IMedicineService.GetPaginatedMedicines(PaginationFilter)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines(adas_core.Domain.Models.Filter.PaginationFilter)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetPaginatedMedicines
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 45
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a paginated list of medicines based on the provided filter criteria.
example: []
syntax:
content: Task<PaginationResponse<Medicine>> GetPaginatedMedicines(PaginationFilter filter)
parameters:
- id: filter
type: adas_core.Domain.Models.Filter.PaginationFilter
description: The pagination filter containing page size, page number, and optional search criteria.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.Medicine}}
description: A task that represents the asynchronous operation, containing a <xref href="adas_core.Domain.Models.Responses.PaginationResponse%601" data-throw-if-not-resolved="false"></xref> with the requested <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> items and pagination metadata.
content.vb: Function GetPaginatedMedicines(filter As PaginationFilter) As Task(Of PaginationResponse(Of Medicine))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAll
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetAll
id: GetAll
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetAll()
nameWithType: IMedicineService.GetAll()
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAll()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAll
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 50
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all medicines from the data store.
example: []
syntax:
content: Task<List<Medicine>> GetAll()
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.Medicine}}
description: A task that represents the asynchronous operation, containing a list of all <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> entities.
content.vb: Function GetAll() As Task(Of List(Of Medicine))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetAll*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById(MongoDB.Bson.ObjectId)
id: GetMedicineById(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetMedicineById(ObjectId)
nameWithType: IMedicineService.GetMedicineById(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetMedicineById
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 56
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a medicine by its unique identifier.
example: []
syntax:
content: Task<Medicine?> GetMedicineById(ObjectId medicineId)
parameters:
- id: medicineId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the medicine to retrieve.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine}
description: A task that represents the asynchronous operation, containing the <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> if found; otherwise, <code>null</code>.
content.vb: Function GetMedicineById(medicineId As ObjectId) As Task(Of Medicine)
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine(adas_core.Domain.Models.Medicine)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine(adas_core.Domain.Models.Medicine)
id: PostMedicine(adas_core.Domain.Models.Medicine)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: PostMedicine(Medicine)
nameWithType: IMedicineService.PostMedicine(Medicine)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine(adas_core.Domain.Models.Medicine)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: PostMedicine
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 62
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously posts a new medicine and returns the created medicine, or null if the operation fails.
example: []
syntax:
content: Task<Medicine?> PostMedicine(Medicine medicine)
parameters:
- id: medicine
type: adas_core.Domain.Models.Medicine
description: The medicine entity to be posted.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine}
description: A task that represents the asynchronous operation. The task result contains the posted <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref>, or null if the medicine could not be posted.
content.vb: Function PostMedicine(medicine As Medicine) As Task(Of Medicine)
overload: adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine(adas_core.Domain.Models.Medicine)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine(adas_core.Domain.Models.Medicine)
id: UpdateMedicine(adas_core.Domain.Models.Medicine)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: UpdateMedicine(Medicine)
nameWithType: IMedicineService.UpdateMedicine(Medicine)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine(adas_core.Domain.Models.Medicine)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateMedicine
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 68
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates an existing medicine in the data store and returns the updated entity, or <code>null</code> if no matching medicine was found.
example: []
syntax:
content: Task<Medicine?> UpdateMedicine(Medicine medicine)
parameters:
- id: medicine
type: adas_core.Domain.Models.Medicine
description: The medicine entity containing the updated values to be persisted.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Medicine}
description: A task that represents the asynchronous update operation. The result is the updated <xref href="adas_core.Domain.Models.Medicine" data-throw-if-not-resolved="false"></xref> when the update succeeds, or <code>null</code> when the medicine does not exist.
content.vb: Function UpdateMedicine(medicine As Medicine) As Task(Of Medicine)
overload: adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById(MongoDB.Bson.ObjectId)
id: DeleteMedicineById(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: DeleteMedicineById(ObjectId)
nameWithType: IMedicineService.DeleteMedicineById(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteMedicineById
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 73
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Deletes a medicine record identified by the specified identifier.
example: []
syntax:
content: Task DeleteMedicineById(ObjectId medicineId)
parameters:
- id: medicineId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the medicine to delete.
return:
type: System.Threading.Tasks.Task
content.vb: Function DeleteMedicineById(medicineId As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAllTypes
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetAllTypes
id: GetAllTypes
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetAllTypes()
nameWithType: IMedicineService.GetAllTypes()
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllTypes()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllTypes
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 78
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all available types as a list of string identifiers.
example: []
syntax:
content: Task<List<string>> GetAllTypes()
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{System.String}}
description: A task representing the asynchronous operation, containing a list of type identifiers.
content.vb: Function GetAllTypes() As Task(Of List(Of String))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetAllTypes*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups
id: GetAllGroups
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetAllGroups()
nameWithType: IMedicineService.GetAllGroups()
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllGroups
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 83
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all available groups, returning their identifiers or names as a list of strings.
example: []
syntax:
content: Task<List<string>> GetAllGroups()
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{System.String}}
description: A task that represents the asynchronous operation. The task result contains a list of strings representing all groups.
content.vb: Function GetAllGroups() As Task(Of List(Of String))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames
id: GetAllNames
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetAllNames()
nameWithType: IMedicineService.GetAllNames()
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllNames
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 88
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all available names.
example: []
syntax:
content: Task<List<string>> GetAllNames()
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{System.String}}
description: A task that represents the asynchronous operation. The task result contains a list of all names.
content.vb: Function GetAllNames() As Task(Of List(Of String))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames*
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes
commentId: M:adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes
id: GetAllCodes
parent: adas_core.Application.Services.Interfaces.IMedicineService
langs:
- csharp
- vb
name: GetAllCodes()
nameWithType: IMedicineService.GetAllCodes()
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IMedicineService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllCodes
path: ../../adas-core.Application/Services/Interfaces/IMedicineService.cs
startLine: 93
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves the complete list of available codes from the data source.
example: []
syntax:
content: Task<List<string>> GetAllCodes()
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{System.String}}
description: A task representing the asynchronous operation, containing a list of code strings.
content.vb: Function GetAllCodes() As Task(Of List(Of String))
overload: adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes*
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.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.IMedicineService.GetByCode*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetByCode
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetByCode_System_String_
name: GetByCode
nameWithType: IMedicineService.GetByCode
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetByCode
- 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.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<Medicine>
nameWithType: Task<Medicine>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.Medicine>
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.Domain.Models
commentId: N:adas_core.Domain.Models
href: adas_core.html
name: adas_core.Domain.Models
nameWithType: adas_core.Domain.Models
fullName: adas_core.Domain.Models
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: System.Threading.Tasks.Task`1
commentId: T:System.Threading.Tasks.Task`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<TResult>
nameWithType: Task<TResult>
fullName: System.Threading.Tasks.Task<TResult>
nameWithType.vb: Task(Of TResult)
fullName.vb: System.Threading.Tasks.Task(Of TResult)
name.vb: Task(Of TResult)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- name: TResult
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- name: TResult
- name: )
- uid: System.Threading.Tasks
commentId: N:System.Threading.Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Threading.Tasks
nameWithType: System.Threading.Tasks
fullName: System.Threading.Tasks
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetByCodeOrNote_System_Collections_Generic_List_System_String__
name: GetByCodeOrNote
nameWithType: IMedicineService.GetByCodeOrNote
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetByCodeOrNote
- uid: System.Collections.Generic.List{System.String}
commentId: T:System.Collections.Generic.List{System.String}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List<string>
nameWithType: List<string>
fullName: System.Collections.Generic.List<string>
nameWithType.vb: List(Of String)
fullName.vb: System.Collections.Generic.List(Of String)
name.vb: List(Of String)
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: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- 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: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.Medicine}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{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<List<Medicine>>
nameWithType: Task<List<Medicine>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.Medicine>>
nameWithType.vb: Task(Of List(Of Medicine))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.Medicine))
name.vb: Task(Of List(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: 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.Medicine
name: Medicine
- 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.Medicine
name: Medicine
- name: )
- name: )
- uid: System.Collections.Generic.List`1
commentId: T:System.Collections.Generic.List`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List<T>
nameWithType: List<T>
fullName: System.Collections.Generic.List<T>
nameWithType.vb: List(Of T)
fullName.vb: System.Collections.Generic.List(Of T)
name.vb: List(Of T)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: 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.IMedicineService.GetByName*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetByName
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetByName_System_String_
name: GetByName
nameWithType: IMedicineService.GetByName
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetByName
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetMedicinesOfTreatments_System_Collections_Generic_IEnumerable_adas_core_Domain_Models_PatientTreatment__
name: GetMedicinesOfTreatments
nameWithType: IMedicineService.GetMedicinesOfTreatments
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicinesOfTreatments
- uid: System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}
commentId: T:System.Collections.Generic.IEnumerable{adas_core.Domain.Models.PatientTreatment}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerable`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable<PatientTreatment>
nameWithType: IEnumerable<PatientTreatment>
fullName: System.Collections.Generic.IEnumerable<adas_core.Domain.Models.PatientTreatment>
nameWithType.vb: IEnumerable(Of PatientTreatment)
fullName.vb: System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.PatientTreatment)
name.vb: IEnumerable(Of PatientTreatment)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- uid: adas_core.Domain.Models.PatientTreatment
name: PatientTreatment
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.PatientTreatment
name: PatientTreatment
- name: )
- uid: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.Medicine}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{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<IEnumerable<Medicine>>
nameWithType: Task<IEnumerable<Medicine>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<adas_core.Domain.Models.Medicine>>
nameWithType.vb: Task(Of IEnumerable(Of Medicine))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.Medicine))
name.vb: Task(Of IEnumerable(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: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- uid: adas_core.Domain.Models.Medicine
name: Medicine
- name: '>'
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.Medicine
name: Medicine
- name: )
- name: )
- uid: System.Collections.Generic.IEnumerable`1
commentId: T:System.Collections.Generic.IEnumerable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable<T>
nameWithType: IEnumerable<T>
fullName: System.Collections.Generic.IEnumerable<T>
nameWithType.vb: IEnumerable(Of T)
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
name.vb: IEnumerable(Of T)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetActiveMedicinesByPatient_MongoDB_Bson_ObjectId_
name: GetActiveMedicinesByPatient
nameWithType: IMedicineService.GetActiveMedicinesByPatient
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetActiveMedicinesByPatient
- uid: MongoDB.Bson.ObjectId
commentId: T:MongoDB.Bson.ObjectId
parent: MongoDB.Bson
isExternal: true
name: ObjectId
nameWithType: ObjectId
fullName: MongoDB.Bson.ObjectId
- uid: MongoDB.Bson
commentId: N:MongoDB.Bson
isExternal: true
name: MongoDB.Bson
nameWithType: MongoDB.Bson
fullName: MongoDB.Bson
spec.csharp:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
spec.vb:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
commentId: T:adas_core.Domain.Models.Responses.PaginationResponse`1
href: adas_core.Domain.Models.Responses.PaginationResponse-1.html
name: PaginationResponse<T>
nameWithType: PaginationResponse<T>
fullName: adas_core.Domain.Models.Responses.PaginationResponse<T>
nameWithType.vb: PaginationResponse(Of T)
fullName.vb: adas_core.Domain.Models.Responses.PaginationResponse(Of T)
name.vb: PaginationResponse(Of T)
spec.csharp:
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
name: PaginationResponse
href: adas_core.Domain.Models.Responses.PaginationResponse-1.html
- name: <
- name: T
- name: '>'
spec.vb:
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
name: PaginationResponse
href: adas_core.Domain.Models.Responses.PaginationResponse-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetPaginatedMedicines_adas_core_Domain_Models_Filter_PaginationFilter_
name: GetPaginatedMedicines
nameWithType: IMedicineService.GetPaginatedMedicines
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetPaginatedMedicines
- uid: adas_core.Domain.Models.Filter.PaginationFilter
commentId: T:adas_core.Domain.Models.Filter.PaginationFilter
parent: adas_core.Domain.Models.Filter
href: adas_core.Domain.Models.Filter.PaginationFilter.html
name: PaginationFilter
nameWithType: PaginationFilter
fullName: adas_core.Domain.Models.Filter.PaginationFilter
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.Medicine}}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{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<PaginationResponse<Medicine>>
nameWithType: Task<PaginationResponse<Medicine>>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.Responses.PaginationResponse<adas_core.Domain.Models.Medicine>>
nameWithType.vb: Task(Of PaginationResponse(Of Medicine))
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.PaginationResponse(Of adas_core.Domain.Models.Medicine))
name.vb: Task(Of PaginationResponse(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.Responses.PaginationResponse`1
name: PaginationResponse
- name: <
- uid: adas_core.Domain.Models.Medicine
name: Medicine
- name: '>'
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.Responses.PaginationResponse`1
name: PaginationResponse
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.Medicine
name: Medicine
- name: )
- name: )
- uid: adas_core.Domain.Models.Filter
commentId: N:adas_core.Domain.Models.Filter
href: adas_core.html
name: adas_core.Domain.Models.Filter
nameWithType: adas_core.Domain.Models.Filter
fullName: adas_core.Domain.Models.Filter
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.Filter
name: Filter
href: adas_core.Domain.Models.Filter.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.Filter
name: Filter
href: adas_core.Domain.Models.Filter.html
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAll*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetAll
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetAll
name: GetAll
nameWithType: IMedicineService.GetAll
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAll
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetMedicineById_MongoDB_Bson_ObjectId_
name: GetMedicineById
nameWithType: IMedicineService.GetMedicineById
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetMedicineById
- uid: adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_PostMedicine_adas_core_Domain_Models_Medicine_
name: PostMedicine
nameWithType: IMedicineService.PostMedicine
fullName: adas_core.Application.Services.Interfaces.IMedicineService.PostMedicine
- uid: adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_UpdateMedicine_adas_core_Domain_Models_Medicine_
name: UpdateMedicine
nameWithType: IMedicineService.UpdateMedicine
fullName: adas_core.Application.Services.Interfaces.IMedicineService.UpdateMedicine
- uid: adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_DeleteMedicineById_MongoDB_Bson_ObjectId_
name: DeleteMedicineById
nameWithType: IMedicineService.DeleteMedicineById
fullName: adas_core.Application.Services.Interfaces.IMedicineService.DeleteMedicineById
- 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.IMedicineService.GetAllTypes*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetAllTypes
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetAllTypes
name: GetAllTypes
nameWithType: IMedicineService.GetAllTypes
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllTypes
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{System.String}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{System.String}}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<List<string>>
nameWithType: Task<List<string>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<string>>
nameWithType.vb: Task(Of List(Of String))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of String))
name.vb: Task(Of List(Of String))
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: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- 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: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- name: )
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetAllGroups
name: GetAllGroups
nameWithType: IMedicineService.GetAllGroups
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllGroups
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetAllNames
name: GetAllNames
nameWithType: IMedicineService.GetAllNames
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllNames
- uid: adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes*
commentId: Overload:adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes
href: adas_core.Application.Services.Interfaces.IMedicineService.html#adas_core_Application_Services_Interfaces_IMedicineService_GetAllCodes
name: GetAllCodes
nameWithType: IMedicineService.GetAllCodes
fullName: adas_core.Application.Services.Interfaces.IMedicineService.GetAllCodes