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

2711 lines
130 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.Interfaces.IDisplayService
commentId: T:adas_core.Application.Services.Interfaces.IDisplayService
id: IDisplayService
parent: adas_core.Application.Services.Interfaces
children:
- adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplay(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc(System.Collections.Generic.List{System.String},System.Boolean)
- adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser(System.String)
- adas_core.Application.Services.Interfaces.IDisplayService.GetAllCompact
- adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection
- adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.GetById(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions(MongoDB.Bson.ObjectId,adas_core.Domain.Models.Masters.LocaleEnum)
- adas_core.Application.Services.Interfaces.IDisplayService.GetByName(System.String)
- adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare(adas_core.Domain.Models.MongoModels.PointOfCare)
- adas_core.Application.Services.Interfaces.IDisplayService.GetByType(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType)
- adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType,System.Nullable{MongoDB.Bson.ObjectId},System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization})
- adas_core.Application.Services.Interfaces.IDisplayService.GetInfo(MongoDB.Bson.ObjectId,System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization},System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Threading.CancellationToken)
- adas_core.Application.Services.Interfaces.IDisplayService.GetPaginatedDisplays(adas_core.Domain.Models.Filter.PaginationFilter)
- adas_core.Application.Services.Interfaces.IDisplayService.InsertOne(adas_core.Domain.Models.MongoModels.Display)
- adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest
- adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse(MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig(adas_core.Domain.Models.MongoModels.Display,adas_core.Domain.Models.MongoModels.DisplayConfig)
- adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId(adas_core.Domain.Models.MongoModels.Display,MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset(MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
- adas_core.Application.Services.Interfaces.IDisplayService.UpdateName(MongoDB.Bson.ObjectId,System.String)
- adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList(MongoDB.Bson.ObjectId,System.Collections.Generic.List{MongoDB.Bson.ObjectId})
langs:
- csharp
- vb
name: IDisplayService
nameWithType: IDisplayService
fullName: adas_core.Application.Services.Interfaces.IDisplayService
type: Interface
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: IDisplayService
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 11
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
syntax:
content: public interface IDisplayService
content.vb: Public Interface IDisplayService
derivedClasses:
- adas_core.Application.Services.DisplayService
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.IDisplayService.GetAllCompact
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetAllCompact
id: GetAllCompact
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetAllCompact()
nameWithType: IDisplayService.GetAllCompact()
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllCompact()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllCompact
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 18
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all displays in a compact format containing only minimal identifying information.
example: []
syntax:
content: Task<List<DisplayMinimalDto>> GetAllCompact()
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayMinimalDto}}
description: A task that represents the asynchronous operation. The task result contains a list of <xref href="adas_core.Domain.Models.DTO.Display.DisplayMinimalDto" data-throw-if-not-resolved="false"></xref> objects representing all available displays in a compact projection.
content.vb: Function GetAllCompact() As Task(Of List(Of DisplayMinimalDto))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetAllCompact*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser(System.String)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser(System.String)
id: GetAllByUser(System.String)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetAllByUser(string?)
nameWithType: IDisplayService.GetAllByUser(string?)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser(string?)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllByUser
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 25
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: >-
Retrieves all displays along with their associated permissions for the specified user.
When <code class="paramref">userName</code> is null, the behavior is determined by the underlying implementation (e.g., returning all displays or an empty result).
example: []
syntax:
content: Task<List<DisplayWithPermissionsDto>> GetAllByUser(string? userName)
parameters:
- id: userName
type: System.String
description: The username used to look up the associated displays and permissions. May be null.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto" data-throw-if-not-resolved="false"></xref> entries for the user.
content.vb: Function GetAllByUser(userName As String) As Task(Of List(Of DisplayWithPermissionsDto))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser*
nameWithType.vb: IDisplayService.GetAllByUser(String)
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser(String)
name.vb: GetAllByUser(String)
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByType(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetByType(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType)
id: GetByType(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetByType(DisplayType)
nameWithType: IDisplayService.GetByType(DisplayConfigEnums.DisplayType)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByType(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByType
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 31
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves a list of <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> entries filtered by the specified display type.
example: []
syntax:
content: Task<List<Display>> GetByType(DisplayConfigEnums.DisplayType type)
parameters:
- id: type
type: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType
description: The display type used to filter the returned collection.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Display}}
description: A task that represents the asynchronous operation, containing the list of <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> items matching the specified type.
content.vb: Function GetByType(type As DisplayConfigEnums.DisplayType) As Task(Of List(Of Display))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetByType*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare(adas_core.Domain.Models.MongoModels.PointOfCare)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare(adas_core.Domain.Models.MongoModels.PointOfCare)
id: GetByPointOfCare(adas_core.Domain.Models.MongoModels.PointOfCare)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetByPointOfCare(PointOfCare)
nameWithType: IDisplayService.GetByPointOfCare(PointOfCare)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare(adas_core.Domain.Models.MongoModels.PointOfCare)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByPointOfCare
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 37
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves the list of displays associated with the specified point of care.
example: []
syntax:
content: Task<List<Display>> GetByPointOfCare(PointOfCare pointOfCare)
parameters:
- id: pointOfCare
type: adas_core.Domain.Models.MongoModels.PointOfCare
description: The point of care used to filter the displays to be returned.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Display}}
description: A task that represents the asynchronous operation, containing the list of <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> items linked to the given point of care.
content.vb: Function GetByPointOfCare(pointOfCare As PointOfCare) As Task(Of List(Of Display))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId(MongoDB.Bson.ObjectId)
id: GetByConfigId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetByConfigId(ObjectId)
nameWithType: IDisplayService.GetByConfigId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByConfigId
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 43
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a list of displays associated with the specified configuration identifier.
example: []
syntax:
content: Task<List<Display>> GetByConfigId(ObjectId configId)
parameters:
- id: configId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the configuration used to filter the displays.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Display}}
description: A task that represents the asynchronous operation. The task result contains a list of displays matching the specified configuration identifier.
content.vb: Function GetByConfigId(configId As ObjectId) As Task(Of List(Of Display))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId(MongoDB.Bson.ObjectId)
id: GetByCardConfigId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetByCardConfigId(ObjectId)
nameWithType: IDisplayService.GetByCardConfigId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByCardConfigId
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 49
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a list of <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> entities associated with the specified card configuration identifier.
example: []
syntax:
content: Task<List<Display>> GetByCardConfigId(ObjectId configId)
parameters:
- id: configId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the card configuration whose associated displays are to be retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Display}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> objects linked to the given card configuration.
content.vb: Function GetByCardConfigId(configId As ObjectId) As Task(Of List(Of Display))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByName(System.String)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetByName(System.String)
id: GetByName(System.String)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetByName(string)
nameWithType: IDisplayService.GetByName(string)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByName(string)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByName
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 58
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: >-
Retrieves a <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> entity by its name asynchronously.
Returns <code>null</code> when no matching display is found.
example: []
syntax:
content: Task<Display?> GetByName(string name)
parameters:
- id: name
type: System.String
description: The name of the display to look up.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> that resolves to the matching <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if none is found.
content.vb: Function GetByName(name As String) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetByName*
nameWithType.vb: IDisplayService.GetByName(String)
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.GetByName(String)
name.vb: GetByName(String)
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetById(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetById(MongoDB.Bson.ObjectId)
id: GetById(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetById(ObjectId)
nameWithType: IDisplayService.GetById(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetById(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetById
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 64
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> entity by its unique identifier.
example: []
syntax:
content: Task<Display?> GetById(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the display to retrieve.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A task that represents the asynchronous operation. The task result contains the <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> if found; otherwise, <code>null</code>.
content.vb: Function GetById(id As ObjectId) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetById*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions(MongoDB.Bson.ObjectId,adas_core.Domain.Models.Masters.LocaleEnum)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions(MongoDB.Bson.ObjectId,adas_core.Domain.Models.Masters.LocaleEnum)
id: GetByIdWithPermissions(MongoDB.Bson.ObjectId,adas_core.Domain.Models.Masters.LocaleEnum)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetByIdWithPermissions(ObjectId, LocaleEnum)
nameWithType: IDisplayService.GetByIdWithPermissions(ObjectId, LocaleEnum)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions(MongoDB.Bson.ObjectId, adas_core.Domain.Models.Masters.LocaleEnum)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByIdWithPermissions
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 71
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves a display representation of an entity along with its associated permissions, localized for the specified locale.
example: []
syntax:
content: Task<DisplayWithPermissionsDto> GetByIdWithPermissions(ObjectId id, LocaleEnum localeEnum)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the entity to retrieve.
- id: localeEnum
type: adas_core.Domain.Models.Masters.LocaleEnum
description: The locale used to localize the returned display data.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto}
description: A task that represents the asynchronous operation, containing the localized display data with permissions.
content.vb: Function GetByIdWithPermissions(id As ObjectId, localeEnum As LocaleEnum) As Task(Of DisplayWithPermissionsDto)
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId(MongoDB.Bson.ObjectId)
id: CountDisplaysByUnitId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: CountDisplaysByUnitId(ObjectId)
nameWithType: IDisplayService.CountDisplaysByUnitId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: CountDisplaysByUnitId
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 77
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously counts the number of displays associated with the specified unit identifier.
example: []
syntax:
content: Task<long> CountDisplaysByUnitId(ObjectId unitId)
parameters:
- id: unitId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the unit whose displays should be counted.
return:
type: System.Threading.Tasks.Task{System.Int64}
description: A task that represents the asynchronous operation. The task result contains the count of displays linked to the specified unit.
content.vb: Function CountDisplaysByUnitId(unitId As ObjectId) As Task(Of Long)
overload: adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetInfo(MongoDB.Bson.ObjectId,System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization},System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Threading.CancellationToken)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetInfo(MongoDB.Bson.ObjectId,System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization},System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Threading.CancellationToken)
id: GetInfo(MongoDB.Bson.ObjectId,System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization},System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Threading.CancellationToken)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetInfo(ObjectId, string?, List<Authorization>?, LocaleEnum?, bool, bool, bool, bool, CancellationToken)
nameWithType: IDisplayService.GetInfo(ObjectId, string?, List<Authorization>?, LocaleEnum?, bool, bool, bool, bool, CancellationToken)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetInfo(MongoDB.Bson.ObjectId, string?, System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.Authorization>?, adas_core.Domain.Models.Masters.LocaleEnum?, bool, bool, bool, bool, System.Threading.CancellationToken)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetInfo
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 92
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the display identified by <code class="paramref">id</code>, optionally populating related data such as point-of-care, patient, display list, and display configuration based on the corresponding fill flags.
example: []
syntax:
content: Task<Display?> GetInfo(ObjectId id, string? userName, List<Authorization>? authorizations, LocaleEnum? locale, bool fillPointOfCare = true, bool fillPatientData = false, bool fillDisplayList = true, bool fillDisplayConfig = true, CancellationToken ct = default)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The identifier of the display to retrieve.
- id: userName
type: System.String
description: The name of the user requesting the display, used for authorization checks.
- id: authorizations
type: System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}
description: Optional collection of authorizations used to control access to the display and its related data.
- id: locale
type: System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum}
description: Optional locale used to localize the returned display information.
- id: fillPointOfCare
type: System.Boolean
description: When <code>true</code>, includes the associated point-of-care data in the result.
- id: fillPatientData
type: System.Boolean
description: When <code>true</code>, includes the associated patient data in the result.
- id: fillDisplayList
type: System.Boolean
description: When <code>true</code>, includes the display list in the result.
- id: fillDisplayConfig
type: System.Boolean
description: When <code>true</code>, includes the display configuration in the result.
- id: ct
type: System.Threading.CancellationToken
description: Token used to cancel the asynchronous operation.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> that resolves to the <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> if found, or <code>null</code> if no display matches the specified <code class="paramref">id</code>.
content.vb: Function GetInfo(id As ObjectId, userName As String, authorizations As List(Of Authorization), locale As LocaleEnum?, fillPointOfCare As Boolean = True, fillPatientData As Boolean = False, fillDisplayList As Boolean = True, fillDisplayConfig As Boolean = True, ct As CancellationToken = Nothing) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetInfo*
nameWithType.vb: IDisplayService.GetInfo(ObjectId, String, List(Of Authorization), LocaleEnum?, Boolean, Boolean, Boolean, Boolean, CancellationToken)
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.GetInfo(MongoDB.Bson.ObjectId, String, System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Authorization), adas_core.Domain.Models.Masters.LocaleEnum?, Boolean, Boolean, Boolean, Boolean, System.Threading.CancellationToken)
name.vb: GetInfo(ObjectId, String, List(Of Authorization), LocaleEnum?, Boolean, Boolean, Boolean, Boolean, CancellationToken)
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType,System.Nullable{MongoDB.Bson.ObjectId},System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization})
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType,System.Nullable{MongoDB.Bson.ObjectId},System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization})
id: GetDisplaySectionByUser(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType,System.Nullable{MongoDB.Bson.ObjectId},System.String,System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization})
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetDisplaySectionByUser(DisplayType, ObjectId?, string?, List<Authorization>?)
nameWithType: IDisplayService.GetDisplaySectionByUser(DisplayConfigEnums.DisplayType, ObjectId?, string?, List<Authorization>?)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType, MongoDB.Bson.ObjectId?, string?, System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.Authorization>?)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetDisplaySectionByUser
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 113
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a list of minimal display sections filtered by display type, current display context, user name, and the provided authorizations.
example: []
syntax:
content: Task<List<MinimalDisplaySection>> GetDisplaySectionByUser(DisplayConfigEnums.DisplayType type, ObjectId? currentDisplay, string? userName, List<Authorization>? authorizations)
parameters:
- id: type
type: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType
description: The display type used to filter the available sections.
- id: currentDisplay
type: System.Nullable{MongoDB.Bson.ObjectId}
description: The identifier of the current display, or <code>null</code> when no display is selected.
- id: userName
type: System.String
description: The user name used to resolve user-specific sections, or <code>null</code> if not applicable.
- id: authorizations
type: System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}
description: The list of authorizations used to authorize and filter the returned sections, or <code>null</code> if no authorization filtering is required.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.MinimalDisplaySection}}
description: A task that yields the list of <xref href="adas_core.Domain.Models.MongoModels.MinimalDisplaySection" data-throw-if-not-resolved="false"></xref> instances matching the supplied criteria.
content.vb: Function GetDisplaySectionByUser(type As DisplayConfigEnums.DisplayType, currentDisplay As ObjectId?, userName As String, authorizations As List(Of Authorization)) As Task(Of List(Of MinimalDisplaySection))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser*
nameWithType.vb: IDisplayService.GetDisplaySectionByUser(DisplayConfigEnums.DisplayType, ObjectId?, String, List(Of Authorization))
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser(adas_core.Domain.Enums.DisplayConfigEnums.DisplayType, MongoDB.Bson.ObjectId?, String, System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Authorization))
name.vb: GetDisplaySectionByUser(DisplayType, ObjectId?, String, List(Of Authorization))
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection
id: GetAllDisplaySection
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetAllDisplaySection()
nameWithType: IDisplayService.GetAllDisplaySection()
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllDisplaySection
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 123
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all display sections as a minimal display list.
example: []
syntax:
content: Task<MinimalDisplayListDto> GetAllDisplaySection()
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto}
description: A task that represents the asynchronous operation, containing the <xref href="adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto" data-throw-if-not-resolved="false"></xref> with the display section data.
content.vb: Function GetAllDisplaySection() As Task(Of MinimalDisplayListDto)
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId(MongoDB.Bson.ObjectId)
id: GetByUnitId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetByUnitId(ObjectId)
nameWithType: IDisplayService.GetByUnitId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetByUnitId
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 129
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a list of <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> records associated with the specified unit identifier.
example: []
syntax:
content: Task<List<Display>> GetByUnitId(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The <xref href="MongoDB.Bson.ObjectId" data-throw-if-not-resolved="false"></xref> that identifies the unit whose displays are being requested.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Display}}
description: A task that represents the asynchronous operation, containing a <xref href="System.Collections.Generic.List%601" data-throw-if-not-resolved="false"></xref> of displays linked to the given unit.
content.vb: Function GetByUnitId(id As ObjectId) As Task(Of List(Of Display))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc(System.Collections.Generic.List{System.String},System.Boolean)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc(System.Collections.Generic.List{System.String},System.Boolean)
id: GetAllAvailablePoc(System.Collections.Generic.List{System.String},System.Boolean)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetAllAvailablePoc(List<string>, bool)
nameWithType: IDisplayService.GetAllAvailablePoc(List<string>, bool)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc(System.Collections.Generic.List<string>, bool)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllAvailablePoc
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 136
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves all available Points of Contact (POCs) along with their associated unit information, optionally filtered by the provided display identifiers and allowing exclusion of virtual entries.
example: []
syntax:
content: Task<PocAndUnitDto> GetAllAvailablePoc(List<string> displayIds, bool excludeVirtual = false)
parameters:
- id: displayIds
type: System.Collections.Generic.List{System.String}
description: The list of display identifiers used to filter the available POCs.
- id: excludeVirtual
type: System.Boolean
description: When set to <code>true</code>, excludes virtual POCs from the results; otherwise, virtual POCs are included.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.PocAndUnitDto}
description: A task that represents the asynchronous operation. The task result contains a <xref href="adas_core.Domain.Models.DTO.PocAndUnitDto" data-throw-if-not-resolved="false"></xref> with the matching POCs and their unit details.
content.vb: Function GetAllAvailablePoc(displayIds As List(Of String), excludeVirtual As Boolean = False) As Task(Of PocAndUnitDto)
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc*
nameWithType.vb: IDisplayService.GetAllAvailablePoc(List(Of String), Boolean)
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc(System.Collections.Generic.List(Of String), Boolean)
name.vb: GetAllAvailablePoc(List(Of String), Boolean)
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId(MongoDB.Bson.ObjectId)
id: GetAllPocsByDisplayId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetAllPocsByDisplayId(ObjectId)
nameWithType: IDisplayService.GetAllPocsByDisplayId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllPocsByDisplayId
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 142
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously retrieves all Points of Care (POCs) associated with the specified display identifier.
example: []
syntax:
content: Task<List<PointOfCare>> GetAllPocsByDisplayId(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The display identifier used to look up the associated Points of Care.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PointOfCare}}
description: A task representing the asynchronous operation, containing a list of Points of Care matching the specified display identifier.
content.vb: Function GetAllPocsByDisplayId(id As ObjectId) As Task(Of List(Of PointOfCare))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.InsertOne(adas_core.Domain.Models.MongoModels.Display)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.InsertOne(adas_core.Domain.Models.MongoModels.Display)
id: InsertOne(adas_core.Domain.Models.MongoModels.Display)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: InsertOne(Display)
nameWithType: IDisplayService.InsertOne(Display)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.InsertOne(adas_core.Domain.Models.MongoModels.Display)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: InsertOne
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 148
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Inserts a new display record into the data store and returns the persisted entity.
example: []
syntax:
content: Task<Display> InsertOne(Display display)
parameters:
- id: display
type: adas_core.Domain.Models.MongoModels.Display
description: The display entity to insert.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A task that represents the asynchronous operation, containing the inserted <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref>.
content.vb: Function InsertOne(display As Display) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.InsertOne*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest
id: InsertOneTest
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: InsertOneTest()
nameWithType: IDisplayService.InsertOneTest()
fullName: adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest()
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: InsertOneTest
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 153
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously inserts a single test <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> record and returns the persisted result.
example: []
syntax:
content: Task<Display> InsertOneTest()
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> that represents the asynchronous insert operation, containing the inserted <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref>.
content.vb: Function InsertOneTest() As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig(adas_core.Domain.Models.MongoModels.Display,adas_core.Domain.Models.MongoModels.DisplayConfig)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig(adas_core.Domain.Models.MongoModels.Display,adas_core.Domain.Models.MongoModels.DisplayConfig)
id: UpdateConfig(adas_core.Domain.Models.MongoModels.Display,adas_core.Domain.Models.MongoModels.DisplayConfig)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: UpdateConfig(Display, DisplayConfig?)
nameWithType: IDisplayService.UpdateConfig(Display, DisplayConfig?)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig(adas_core.Domain.Models.MongoModels.Display, adas_core.Domain.Models.MongoModels.DisplayConfig?)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateConfig
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 160
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates the configuration of an existing display using the provided new configuration.
example: []
syntax:
content: Task<Display?> UpdateConfig(Display oldDisplay, DisplayConfig? newDisplayConfig)
parameters:
- id: oldDisplay
type: adas_core.Domain.Models.MongoModels.Display
description: The current display whose configuration will be updated.
- id: newDisplayConfig
type: adas_core.Domain.Models.MongoModels.DisplayConfig
description: The new display configuration to apply, or null to leave the configuration unchanged.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A task that represents the asynchronous operation. The task result contains the updated <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref>, or null if the update was not performed.
content.vb: Function UpdateConfig(oldDisplay As Display, newDisplayConfig As DisplayConfig) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig*
nameWithType.vb: IDisplayService.UpdateConfig(Display, DisplayConfig)
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig(adas_core.Domain.Models.MongoModels.Display, adas_core.Domain.Models.MongoModels.DisplayConfig)
name.vb: UpdateConfig(Display, DisplayConfig)
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId(adas_core.Domain.Models.MongoModels.Display,MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId(adas_core.Domain.Models.MongoModels.Display,MongoDB.Bson.ObjectId)
id: UpdateConfigId(adas_core.Domain.Models.MongoModels.Display,MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: UpdateConfigId(Display, ObjectId)
nameWithType: IDisplayService.UpdateConfigId(Display, ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId(adas_core.Domain.Models.MongoModels.Display, MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateConfigId
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 167
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates the configuration identifier associated with the specified display.
example: []
syntax:
content: Task<Display?> UpdateConfigId(Display oldDisplay, ObjectId configId)
parameters:
- id: oldDisplay
type: adas_core.Domain.Models.MongoModels.Display
description: The existing display whose configuration identifier will be updated.
- id: configId
type: MongoDB.Bson.ObjectId
description: The new configuration identifier to associate with the display.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A task that resolves to the updated <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if no result is available.
content.vb: Function UpdateConfigId(oldDisplay As Display, configId As ObjectId) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList(MongoDB.Bson.ObjectId,System.Collections.Generic.List{MongoDB.Bson.ObjectId})
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList(MongoDB.Bson.ObjectId,System.Collections.Generic.List{MongoDB.Bson.ObjectId})
id: UpdatePointOfCareList(MongoDB.Bson.ObjectId,System.Collections.Generic.List{MongoDB.Bson.ObjectId})
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: UpdatePointOfCareList(ObjectId, List<ObjectId>)
nameWithType: IDisplayService.UpdatePointOfCareList(ObjectId, List<ObjectId>)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList(MongoDB.Bson.ObjectId, System.Collections.Generic.List<MongoDB.Bson.ObjectId>)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdatePointOfCareList
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 174
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates the point of care list associated with the specified object identifier, replacing or merging it with the provided list of point of care object identifiers.
example: []
syntax:
content: Task<Display?> UpdatePointOfCareList(ObjectId objectId, List<ObjectId> listPocObId)
parameters:
- id: objectId
type: MongoDB.Bson.ObjectId
description: The identifier of the object whose point of care list is being updated.
- id: listPocObId
type: System.Collections.Generic.List{MongoDB.Bson.ObjectId}
description: The collection of point of care object identifiers to apply to the target object.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A task that represents the asynchronous operation, containing the resulting <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> when the update succeeds, or <code>null</code> when no matching object is found.
content.vb: Function UpdatePointOfCareList(objectId As ObjectId, listPocObId As List(Of ObjectId)) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList*
nameWithType.vb: IDisplayService.UpdatePointOfCareList(ObjectId, List(Of ObjectId))
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList(MongoDB.Bson.ObjectId, System.Collections.Generic.List(Of MongoDB.Bson.ObjectId))
name.vb: UpdatePointOfCareList(ObjectId, List(Of ObjectId))
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset(MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset(MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
id: UpdateConfigPreset(MongoDB.Bson.ObjectId,MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: UpdateConfigPreset(ObjectId, ObjectId)
nameWithType: IDisplayService.UpdateConfigPreset(ObjectId, ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset(MongoDB.Bson.ObjectId, MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateConfigPreset
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 181
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates the configuration preset associated with the specified display using the provided configuration display.
example: []
syntax:
content: Task<Display?> UpdateConfigPreset(ObjectId objectIdDisplay, ObjectId objectIdConfigDisplay)
parameters:
- id: objectIdDisplay
type: MongoDB.Bson.ObjectId
description: The unique identifier of the display whose configuration preset will be updated.
- id: objectIdConfigDisplay
type: MongoDB.Bson.ObjectId
description: The unique identifier of the configuration display to apply as the preset.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A task that resolves to the updated <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if no matching display is found.
content.vb: Function UpdateConfigPreset(objectIdDisplay As ObjectId, objectIdConfigDisplay As ObjectId) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateName(MongoDB.Bson.ObjectId,System.String)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.UpdateName(MongoDB.Bson.ObjectId,System.String)
id: UpdateName(MongoDB.Bson.ObjectId,System.String)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: UpdateName(ObjectId, string)
nameWithType: IDisplayService.UpdateName(ObjectId, string)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateName(MongoDB.Bson.ObjectId, string)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UpdateName
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 188
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Updates the name of the entity identified by the given identifier and returns the resulting <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: Task<Display?> UpdateName(ObjectId id, string name)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The identifier of the entity whose name should be updated.
- id: name
type: System.String
description: The new name to apply to the entity.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
description: A task that represents the asynchronous update operation, containing the updated <xref href="adas_core.Domain.Models.MongoModels.Display" data-throw-if-not-resolved="false"></xref> or <code>null</code> if no entity was found.
content.vb: Function UpdateName(id As ObjectId, name As String) As Task(Of Display)
overload: adas_core.Application.Services.Interfaces.IDisplayService.UpdateName*
nameWithType.vb: IDisplayService.UpdateName(ObjectId, String)
fullName.vb: adas_core.Application.Services.Interfaces.IDisplayService.UpdateName(MongoDB.Bson.ObjectId, String)
name.vb: UpdateName(ObjectId, String)
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetPaginatedDisplays(adas_core.Domain.Models.Filter.PaginationFilter)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetPaginatedDisplays(adas_core.Domain.Models.Filter.PaginationFilter)
id: GetPaginatedDisplays(adas_core.Domain.Models.Filter.PaginationFilter)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetPaginatedDisplays(PaginationFilter)
nameWithType: IDisplayService.GetPaginatedDisplays(PaginationFilter)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetPaginatedDisplays(adas_core.Domain.Models.Filter.PaginationFilter)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetPaginatedDisplays
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 194
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a paginated collection of displays based on the provided filter criteria.
example: []
syntax:
content: Task<PaginationResponse<Display>> GetPaginatedDisplays(PaginationFilter filter)
parameters:
- id: filter
type: adas_core.Domain.Models.Filter.PaginationFilter
description: The pagination filter that defines the page size, page number, and any additional filtering criteria for the display results.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.Display}}
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 page of displays and pagination metadata.
content.vb: Function GetPaginatedDisplays(filter As PaginationFilter) As Task(Of PaginationResponse(Of Display))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetPaginatedDisplays*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplay(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplay(MongoDB.Bson.ObjectId)
id: DeleteDisplay(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: DeleteDisplay(ObjectId)
nameWithType: IDisplayService.DeleteDisplay(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplay(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteDisplay
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 200
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously deletes the display identified by the specified identifier.
example: []
syntax:
content: Task<bool> DeleteDisplay(ObjectId id)
parameters:
- id: id
type: MongoDB.Bson.ObjectId
description: The unique identifier of the display to delete.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that represents the asynchronous operation, containing a value indicating whether the display was successfully deleted.
content.vb: Function DeleteDisplay(id As ObjectId) As Task(Of Boolean)
overload: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplay*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations(MongoDB.Bson.ObjectId)
id: GetDisplayConfigLocations(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: GetDisplayConfigLocations(ObjectId)
nameWithType: IDisplayService.GetDisplayConfigLocations(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetDisplayConfigLocations
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 206
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves the list of display configuration locations associated with the specified display configuration.
example: []
syntax:
content: Task<List<DisplayConfigLocationDto>> GetDisplayConfigLocations(ObjectId displayConfigId)
parameters:
- id: displayConfigId
type: MongoDB.Bson.ObjectId
description: The unique identifier of the display configuration whose locations are being retrieved.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto}}
description: A task that represents the asynchronous operation, containing a list of <xref href="adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto" data-throw-if-not-resolved="false"></xref> objects for the specified display configuration.
content.vb: Function GetDisplayConfigLocations(displayConfigId As ObjectId) As Task(Of List(Of DisplayConfigLocationDto))
overload: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse(MongoDB.Bson.ObjectId)
id: IsDisplayConfigInUse(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: IsDisplayConfigInUse(ObjectId)
nameWithType: IDisplayService.IsDisplayConfigInUse(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: IsDisplayConfigInUse
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 212
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Asynchronously determines whether the specified display configuration is currently in use.
example: []
syntax:
content: Task<bool> IsDisplayConfigInUse(ObjectId displayConfigId)
parameters:
- id: displayConfigId
type: MongoDB.Bson.ObjectId
description: The identifier of the display configuration to check.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that represents the asynchronous operation. The task result is <code>true</code> if the display configuration is in use; otherwise, <code>false</code>.
content.vb: Function IsDisplayConfigInUse(displayConfigId As ObjectId) As Task(Of Boolean)
overload: adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse*
- uid: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId(MongoDB.Bson.ObjectId)
commentId: M:adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId(MongoDB.Bson.ObjectId)
id: DeleteDisplaysByUnitId(MongoDB.Bson.ObjectId)
parent: adas_core.Application.Services.Interfaces.IDisplayService
langs:
- csharp
- vb
name: DeleteDisplaysByUnitId(ObjectId)
nameWithType: IDisplayService.DeleteDisplaysByUnitId(ObjectId)
fullName: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId(MongoDB.Bson.ObjectId)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IDisplayService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: DeleteDisplaysByUnitId
path: ../../adas-core.Application/Services/Interfaces/IDisplayService.cs
startLine: 217
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Deletes display records associated with the specified unit identifier.
example: []
syntax:
content: Task DeleteDisplaysByUnitId(ObjectId unitId)
parameters:
- id: unitId
type: MongoDB.Bson.ObjectId
description: The identifier of the unit whose displays should be removed.
return:
type: System.Threading.Tasks.Task
content.vb: Function DeleteDisplaysByUnitId(unitId As ObjectId) As Task
overload: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId*
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.DTO.Display.DisplayMinimalDto
commentId: T:adas_core.Domain.Models.DTO.Display.DisplayMinimalDto
href: adas_core.Domain.Models.DTO.Display.DisplayMinimalDto.html
name: DisplayMinimalDto
nameWithType: DisplayMinimalDto
fullName: adas_core.Domain.Models.DTO.Display.DisplayMinimalDto
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllCompact*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetAllCompact
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetAllCompact
name: GetAllCompact
nameWithType: IDisplayService.GetAllCompact
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllCompact
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayMinimalDto}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayMinimalDto}}
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<DisplayMinimalDto>>
nameWithType: Task<List<DisplayMinimalDto>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.DTO.Display.DisplayMinimalDto>>
nameWithType.vb: Task(Of List(Of DisplayMinimalDto))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.DTO.Display.DisplayMinimalDto))
name.vb: Task(Of List(Of DisplayMinimalDto))
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.DTO.Display.DisplayMinimalDto
name: DisplayMinimalDto
- 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.DTO.Display.DisplayMinimalDto
name: DisplayMinimalDto
- name: )
- name: )
- 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.Domain.Models.DTO.Display.DisplayWithPermissionsDto
commentId: T:adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto
href: adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto.html
name: DisplayWithPermissionsDto
nameWithType: DisplayWithPermissionsDto
fullName: adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetAllByUser_System_String_
name: GetAllByUser
nameWithType: IDisplayService.GetAllByUser
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllByUser
- 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{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto}}
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<DisplayWithPermissionsDto>>
nameWithType: Task<List<DisplayWithPermissionsDto>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto>>
nameWithType.vb: Task(Of List(Of DisplayWithPermissionsDto))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto))
name.vb: Task(Of List(Of DisplayWithPermissionsDto))
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.DTO.Display.DisplayWithPermissionsDto
name: DisplayWithPermissionsDto
- 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.DTO.Display.DisplayWithPermissionsDto
name: DisplayWithPermissionsDto
- name: )
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: adas_core.Domain.Models.MongoModels.Display
commentId: T:adas_core.Domain.Models.MongoModels.Display
parent: adas_core.Domain.Models.MongoModels
href: adas_core.Domain.Models.MongoModels.Display.html
name: Display
nameWithType: Display
fullName: adas_core.Domain.Models.MongoModels.Display
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByType*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetByType
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetByType_adas_core_Domain_Enums_DisplayConfigEnums_DisplayType_
name: GetByType
nameWithType: IDisplayService.GetByType
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByType
- uid: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType
commentId: T:adas_core.Domain.Enums.DisplayConfigEnums.DisplayType
parent: adas_core.Domain.Enums
href: adas_core.Domain.Enums.DisplayConfigEnums.html
name: DisplayConfigEnums.DisplayType
nameWithType: DisplayConfigEnums.DisplayType
fullName: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType
spec.csharp:
- uid: adas_core.Domain.Enums.DisplayConfigEnums
name: DisplayConfigEnums
href: adas_core.Domain.Enums.DisplayConfigEnums.html
- name: .
- uid: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType
name: DisplayType
href: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType.html
spec.vb:
- uid: adas_core.Domain.Enums.DisplayConfigEnums
name: DisplayConfigEnums
href: adas_core.Domain.Enums.DisplayConfigEnums.html
- name: .
- uid: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType
name: DisplayType
href: adas_core.Domain.Enums.DisplayConfigEnums.DisplayType.html
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Display}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Display}}
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<Display>>
nameWithType: Task<List<Display>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.Display>>
nameWithType.vb: Task(Of List(Of Display))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Display))
name.vb: Task(Of List(Of Display))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- uid: adas_core.Domain.Models.MongoModels.Display
name: Display
- name: '>'
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.MongoModels.Display
name: Display
- name: )
- name: )
- uid: adas_core.Domain.Models.MongoModels
commentId: N:adas_core.Domain.Models.MongoModels
href: adas_core.html
name: adas_core.Domain.Models.MongoModels
nameWithType: adas_core.Domain.Models.MongoModels
fullName: adas_core.Domain.Models.MongoModels
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.MongoModels
name: MongoModels
href: adas_core.Domain.Models.MongoModels.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Models
name: Models
href: adas_core.Domain.Models.html
- name: .
- uid: adas_core.Domain.Models.MongoModels
name: MongoModels
href: adas_core.Domain.Models.MongoModels.html
- uid: adas_core.Domain.Enums
commentId: N:adas_core.Domain.Enums
href: adas_core.html
name: adas_core.Domain.Enums
nameWithType: adas_core.Domain.Enums
fullName: adas_core.Domain.Enums
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.Enums
name: Enums
href: adas_core.Domain.Enums.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.Enums
name: Enums
href: adas_core.Domain.Enums.html
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetByPointOfCare_adas_core_Domain_Models_MongoModels_PointOfCare_
name: GetByPointOfCare
nameWithType: IDisplayService.GetByPointOfCare
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByPointOfCare
- uid: adas_core.Domain.Models.MongoModels.PointOfCare
commentId: T:adas_core.Domain.Models.MongoModels.PointOfCare
parent: adas_core.Domain.Models.MongoModels
href: adas_core.Domain.Models.MongoModels.PointOfCare.html
name: PointOfCare
nameWithType: PointOfCare
fullName: adas_core.Domain.Models.MongoModels.PointOfCare
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetByConfigId_MongoDB_Bson_ObjectId_
name: GetByConfigId
nameWithType: IDisplayService.GetByConfigId
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByConfigId
- uid: MongoDB.Bson.ObjectId
commentId: T:MongoDB.Bson.ObjectId
parent: MongoDB.Bson
isExternal: true
name: ObjectId
nameWithType: ObjectId
fullName: MongoDB.Bson.ObjectId
- uid: MongoDB.Bson
commentId: N:MongoDB.Bson
isExternal: true
name: MongoDB.Bson
nameWithType: MongoDB.Bson
fullName: MongoDB.Bson
spec.csharp:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
spec.vb:
- uid: MongoDB
name: MongoDB
isExternal: true
- name: .
- uid: MongoDB.Bson
name: Bson
isExternal: true
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetByCardConfigId_MongoDB_Bson_ObjectId_
name: GetByCardConfigId
nameWithType: IDisplayService.GetByCardConfigId
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByCardConfigId
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByName*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetByName
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetByName_System_String_
name: GetByName
nameWithType: IDisplayService.GetByName
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByName
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Display}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<Display>
nameWithType: Task<Display>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.MongoModels.Display>
nameWithType.vb: Task(Of Display)
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.Display)
name.vb: Task(Of Display)
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.Display
name: Display
- 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.Display
name: Display
- name: )
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetById*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetById
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetById_MongoDB_Bson_ObjectId_
name: GetById
nameWithType: IDisplayService.GetById
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetById
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetByIdWithPermissions_MongoDB_Bson_ObjectId_adas_core_Domain_Models_Masters_LocaleEnum_
name: GetByIdWithPermissions
nameWithType: IDisplayService.GetByIdWithPermissions
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByIdWithPermissions
- uid: adas_core.Domain.Models.Masters.LocaleEnum
commentId: T:adas_core.Domain.Models.Masters.LocaleEnum
parent: adas_core.Domain.Models.Masters
href: adas_core.Domain.Models.Masters.LocaleEnum.html
name: LocaleEnum
nameWithType: LocaleEnum
fullName: adas_core.Domain.Models.Masters.LocaleEnum
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<DisplayWithPermissionsDto>
nameWithType: Task<DisplayWithPermissionsDto>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto>
nameWithType.vb: Task(Of DisplayWithPermissionsDto)
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.DTO.Display.DisplayWithPermissionsDto)
name.vb: Task(Of DisplayWithPermissionsDto)
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.Display.DisplayWithPermissionsDto
name: DisplayWithPermissionsDto
- 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.Display.DisplayWithPermissionsDto
name: DisplayWithPermissionsDto
- name: )
- uid: adas_core.Domain.Models.Masters
commentId: N:adas_core.Domain.Models.Masters
href: adas_core.html
name: adas_core.Domain.Models.Masters
nameWithType: adas_core.Domain.Models.Masters
fullName: adas_core.Domain.Models.Masters
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.Masters
name: Masters
href: adas_core.Domain.Models.Masters.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.Masters
name: Masters
href: adas_core.Domain.Models.Masters.html
- uid: adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_CountDisplaysByUnitId_MongoDB_Bson_ObjectId_
name: CountDisplaysByUnitId
nameWithType: IDisplayService.CountDisplaysByUnitId
fullName: adas_core.Application.Services.Interfaces.IDisplayService.CountDisplaysByUnitId
- uid: System.Threading.Tasks.Task{System.Int64}
commentId: T:System.Threading.Tasks.Task{System.Int64}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<long>
nameWithType: Task<long>
fullName: System.Threading.Tasks.Task<long>
nameWithType.vb: Task(Of Long)
fullName.vb: System.Threading.Tasks.Task(Of Long)
name.vb: Task(Of Long)
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.Int64
name: long
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int64
- 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.Int64
name: Long
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int64
- name: )
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetInfo*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetInfo
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetInfo_MongoDB_Bson_ObjectId_System_String_System_Collections_Generic_List_adas_core_Domain_Models_MongoModels_Authorization__System_Nullable_adas_core_Domain_Models_Masters_LocaleEnum__System_Boolean_System_Boolean_System_Boolean_System_Boolean_System_Threading_CancellationToken_
name: GetInfo
nameWithType: IDisplayService.GetInfo
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetInfo
- uid: System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}
commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List<Authorization>
nameWithType: List<Authorization>
fullName: System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.Authorization>
nameWithType.vb: List(Of Authorization)
fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Authorization)
name.vb: List(Of Authorization)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- uid: adas_core.Domain.Models.MongoModels.Authorization
name: Authorization
href: adas_core.Domain.Models.MongoModels.Authorization.html
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.MongoModels.Authorization
name: Authorization
href: adas_core.Domain.Models.MongoModels.Authorization.html
- name: )
- uid: System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum}
commentId: T:System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum}
parent: System
definition: System.Nullable`1
href: adas_core.Domain.Models.Masters.LocaleEnum.html
name: LocaleEnum?
nameWithType: LocaleEnum?
fullName: adas_core.Domain.Models.Masters.LocaleEnum?
spec.csharp:
- uid: adas_core.Domain.Models.Masters.LocaleEnum
name: LocaleEnum
href: adas_core.Domain.Models.Masters.LocaleEnum.html
- name: '?'
spec.vb:
- uid: adas_core.Domain.Models.Masters.LocaleEnum
name: LocaleEnum
href: adas_core.Domain.Models.Masters.LocaleEnum.html
- name: '?'
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: System.Threading.CancellationToken
commentId: T:System.Threading.CancellationToken
parent: System.Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.cancellationtoken
name: CancellationToken
nameWithType: CancellationToken
fullName: System.Threading.CancellationToken
- uid: System.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: System.Nullable`1
commentId: T:System.Nullable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
name: Nullable<T>
nameWithType: Nullable<T>
fullName: System.Nullable<T>
nameWithType.vb: Nullable(Of T)
fullName.vb: System.Nullable(Of T)
name.vb: Nullable(Of T)
spec.csharp:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Threading
commentId: N:System.Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Threading
nameWithType: System.Threading
fullName: System.Threading
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- uid: adas_core.Domain.Models.MongoModels.MinimalDisplaySection
commentId: T:adas_core.Domain.Models.MongoModels.MinimalDisplaySection
href: adas_core.Domain.Models.MongoModels.MinimalDisplaySection.html
name: MinimalDisplaySection
nameWithType: MinimalDisplaySection
fullName: adas_core.Domain.Models.MongoModels.MinimalDisplaySection
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetDisplaySectionByUser_adas_core_Domain_Enums_DisplayConfigEnums_DisplayType_System_Nullable_MongoDB_Bson_ObjectId__System_String_System_Collections_Generic_List_adas_core_Domain_Models_MongoModels_Authorization__
name: GetDisplaySectionByUser
nameWithType: IDisplayService.GetDisplaySectionByUser
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplaySectionByUser
- uid: System.Nullable{MongoDB.Bson.ObjectId}
commentId: T:System.Nullable{MongoDB.Bson.ObjectId}
parent: System
definition: System.Nullable`1
name: ObjectId?
nameWithType: ObjectId?
fullName: MongoDB.Bson.ObjectId?
spec.csharp:
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: '?'
spec.vb:
- uid: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: '?'
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.MinimalDisplaySection}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.MinimalDisplaySection}}
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<MinimalDisplaySection>>
nameWithType: Task<List<MinimalDisplaySection>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.MinimalDisplaySection>>
nameWithType.vb: Task(Of List(Of MinimalDisplaySection))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.MinimalDisplaySection))
name.vb: Task(Of List(Of MinimalDisplaySection))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- uid: adas_core.Domain.Models.MongoModels.MinimalDisplaySection
name: MinimalDisplaySection
- name: '>'
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.MongoModels.MinimalDisplaySection
name: MinimalDisplaySection
- name: )
- name: )
- uid: adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto
commentId: T:adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto
href: adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto.html
name: MinimalDisplayListDto
nameWithType: MinimalDisplayListDto
fullName: adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetAllDisplaySection
name: GetAllDisplaySection
nameWithType: IDisplayService.GetAllDisplaySection
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllDisplaySection
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<MinimalDisplayListDto>
nameWithType: Task<MinimalDisplayListDto>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto>
nameWithType.vb: Task(Of MinimalDisplayListDto)
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.DTO.Display.MinimalDisplayListDto)
name.vb: Task(Of MinimalDisplayListDto)
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.Display.MinimalDisplayListDto
name: MinimalDisplayListDto
- 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.Display.MinimalDisplayListDto
name: MinimalDisplayListDto
- name: )
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetByUnitId_MongoDB_Bson_ObjectId_
name: GetByUnitId
nameWithType: IDisplayService.GetByUnitId
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetByUnitId
- uid: adas_core.Domain.Models.DTO.PocAndUnitDto
commentId: T:adas_core.Domain.Models.DTO.PocAndUnitDto
href: adas_core.Domain.Models.DTO.PocAndUnitDto.html
name: PocAndUnitDto
nameWithType: PocAndUnitDto
fullName: adas_core.Domain.Models.DTO.PocAndUnitDto
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetAllAvailablePoc_System_Collections_Generic_List_System_String__System_Boolean_
name: GetAllAvailablePoc
nameWithType: IDisplayService.GetAllAvailablePoc
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllAvailablePoc
- 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{adas_core.Domain.Models.DTO.PocAndUnitDto}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.PocAndUnitDto}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<PocAndUnitDto>
nameWithType: Task<PocAndUnitDto>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.DTO.PocAndUnitDto>
nameWithType.vb: Task(Of PocAndUnitDto)
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.DTO.PocAndUnitDto)
name.vb: Task(Of PocAndUnitDto)
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.PocAndUnitDto
name: PocAndUnitDto
- 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.PocAndUnitDto
name: PocAndUnitDto
- name: )
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetAllPocsByDisplayId_MongoDB_Bson_ObjectId_
name: GetAllPocsByDisplayId
nameWithType: IDisplayService.GetAllPocsByDisplayId
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetAllPocsByDisplayId
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PointOfCare}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.PointOfCare}}
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<PointOfCare>>
nameWithType: Task<List<PointOfCare>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.PointOfCare>>
nameWithType.vb: Task(Of List(Of PointOfCare))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.PointOfCare))
name.vb: Task(Of List(Of PointOfCare))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- uid: adas_core.Domain.Models.MongoModels.PointOfCare
name: PointOfCare
- name: '>'
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.MongoModels.PointOfCare
name: PointOfCare
- name: )
- name: )
- uid: adas_core.Application.Services.Interfaces.IDisplayService.InsertOne*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.InsertOne
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_InsertOne_adas_core_Domain_Models_MongoModels_Display_
name: InsertOne
nameWithType: IDisplayService.InsertOne
fullName: adas_core.Application.Services.Interfaces.IDisplayService.InsertOne
- uid: adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_InsertOneTest
name: InsertOneTest
nameWithType: IDisplayService.InsertOneTest
fullName: adas_core.Application.Services.Interfaces.IDisplayService.InsertOneTest
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_UpdateConfig_adas_core_Domain_Models_MongoModels_Display_adas_core_Domain_Models_MongoModels_DisplayConfig_
name: UpdateConfig
nameWithType: IDisplayService.UpdateConfig
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfig
- uid: adas_core.Domain.Models.MongoModels.DisplayConfig
commentId: T:adas_core.Domain.Models.MongoModels.DisplayConfig
parent: adas_core.Domain.Models.MongoModels
href: adas_core.Domain.Models.MongoModels.DisplayConfig.html
name: DisplayConfig
nameWithType: DisplayConfig
fullName: adas_core.Domain.Models.MongoModels.DisplayConfig
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_UpdateConfigId_adas_core_Domain_Models_MongoModels_Display_MongoDB_Bson_ObjectId_
name: UpdateConfigId
nameWithType: IDisplayService.UpdateConfigId
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigId
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_UpdatePointOfCareList_MongoDB_Bson_ObjectId_System_Collections_Generic_List_MongoDB_Bson_ObjectId__
name: UpdatePointOfCareList
nameWithType: IDisplayService.UpdatePointOfCareList
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdatePointOfCareList
- uid: System.Collections.Generic.List{MongoDB.Bson.ObjectId}
commentId: T:System.Collections.Generic.List{MongoDB.Bson.ObjectId}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List<ObjectId>
nameWithType: List<ObjectId>
fullName: System.Collections.Generic.List<MongoDB.Bson.ObjectId>
nameWithType.vb: List(Of ObjectId)
fullName.vb: System.Collections.Generic.List(Of MongoDB.Bson.ObjectId)
name.vb: List(Of ObjectId)
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: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- 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: MongoDB.Bson.ObjectId
name: ObjectId
isExternal: true
- name: )
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_UpdateConfigPreset_MongoDB_Bson_ObjectId_MongoDB_Bson_ObjectId_
name: UpdateConfigPreset
nameWithType: IDisplayService.UpdateConfigPreset
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateConfigPreset
- uid: adas_core.Application.Services.Interfaces.IDisplayService.UpdateName*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.UpdateName
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_UpdateName_MongoDB_Bson_ObjectId_System_String_
name: UpdateName
nameWithType: IDisplayService.UpdateName
fullName: adas_core.Application.Services.Interfaces.IDisplayService.UpdateName
- 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.IDisplayService.GetPaginatedDisplays*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetPaginatedDisplays
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetPaginatedDisplays_adas_core_Domain_Models_Filter_PaginationFilter_
name: GetPaginatedDisplays
nameWithType: IDisplayService.GetPaginatedDisplays
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetPaginatedDisplays
- 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.MongoModels.Display}}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.Display}}
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<Display>>
nameWithType: Task<PaginationResponse<Display>>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.Responses.PaginationResponse<adas_core.Domain.Models.MongoModels.Display>>
nameWithType.vb: Task(Of PaginationResponse(Of Display))
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.PaginationResponse(Of adas_core.Domain.Models.MongoModels.Display))
name.vb: Task(Of PaginationResponse(Of Display))
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.MongoModels.Display
name: Display
- 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.MongoModels.Display
name: Display
- 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.IDisplayService.DeleteDisplay*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplay
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_DeleteDisplay_MongoDB_Bson_ObjectId_
name: DeleteDisplay
nameWithType: IDisplayService.DeleteDisplay
fullName: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplay
- 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<bool>
nameWithType: Task<bool>
fullName: System.Threading.Tasks.Task<bool>
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: adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto
commentId: T:adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto
href: adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto.html
name: DisplayConfigLocationDto
nameWithType: DisplayConfigLocationDto
fullName: adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto
- uid: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_GetDisplayConfigLocations_MongoDB_Bson_ObjectId_
name: GetDisplayConfigLocations
nameWithType: IDisplayService.GetDisplayConfigLocations
fullName: adas_core.Application.Services.Interfaces.IDisplayService.GetDisplayConfigLocations
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto}}
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto}}
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<DisplayConfigLocationDto>>
nameWithType: Task<List<DisplayConfigLocationDto>>
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto>>
nameWithType.vb: Task(Of List(Of DisplayConfigLocationDto))
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.DTO.Display.DisplayConfigLocationDto))
name.vb: Task(Of List(Of DisplayConfigLocationDto))
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.DTO.Display.DisplayConfigLocationDto
name: DisplayConfigLocationDto
- 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.DTO.Display.DisplayConfigLocationDto
name: DisplayConfigLocationDto
- name: )
- name: )
- uid: adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_IsDisplayConfigInUse_MongoDB_Bson_ObjectId_
name: IsDisplayConfigInUse
nameWithType: IDisplayService.IsDisplayConfigInUse
fullName: adas_core.Application.Services.Interfaces.IDisplayService.IsDisplayConfigInUse
- uid: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId*
commentId: Overload:adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId
href: adas_core.Application.Services.Interfaces.IDisplayService.html#adas_core_Application_Services_Interfaces_IDisplayService_DeleteDisplaysByUnitId_MongoDB_Bson_ObjectId_
name: DeleteDisplaysByUnitId
nameWithType: IDisplayService.DeleteDisplaysByUnitId
fullName: adas_core.Application.Services.Interfaces.IDisplayService.DeleteDisplaysByUnitId
- 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