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

1328 lines
51 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.ConfigUnitsService
commentId: T:adas_core.Application.Services.ConfigUnitsService
id: ConfigUnitsService
parent: adas_core.Application.Services
children:
- adas_core.Application.Services.ConfigUnitsService.#ctor(adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository,Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.ConfigUnitsService})
- adas_core.Application.Services.ConfigUnitsService.Get(System.String)
- adas_core.Application.Services.ConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
- adas_core.Application.Services.ConfigUnitsService.Map``1(``0)
langs:
- csharp
- vb
name: ConfigUnitsService
nameWithType: ConfigUnitsService
fullName: adas_core.Application.Services.ConfigUnitsService
type: Class
source:
remote:
path: adas-core.Application/Services/ConfigUnitsService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: ConfigUnitsService
path: ../../adas-core.Application/Services/ConfigUnitsService.cs
startLine: 12
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
syntax:
content: 'public class ConfigUnitsService : IConfigUnitsService'
content.vb: Public Class ConfigUnitsService Implements IConfigUnitsService
inheritance:
- System.Object
implements:
- adas_core.Application.Services.Interfaces.IConfigUnitsService
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
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.ConfigUnitsService.#ctor(adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository,Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.ConfigUnitsService})
commentId: M:adas_core.Application.Services.ConfigUnitsService.#ctor(adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository,Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.ConfigUnitsService})
id: '#ctor(adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository,Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.ConfigUnitsService})'
parent: adas_core.Application.Services.ConfigUnitsService
langs:
- csharp
- vb
name: ConfigUnitsService(IConfigUnitsRepository, IOptions<ApiSettings>, ILogger<ConfigUnitsService>)
nameWithType: ConfigUnitsService.ConfigUnitsService(IConfigUnitsRepository, IOptions<ApiSettings>, ILogger<ConfigUnitsService>)
fullName: adas_core.Application.Services.ConfigUnitsService.ConfigUnitsService(adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository, Microsoft.Extensions.Options.IOptions<adas_core.Domain.Models.AppSettings.ApiSettings>, Microsoft.Extensions.Logging.ILogger<adas_core.Application.Services.ConfigUnitsService>)
type: Constructor
source:
remote:
path: adas-core.Application/Services/ConfigUnitsService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: .ctor
path: ../../adas-core.Application/Services/ConfigUnitsService.cs
startLine: 12
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
syntax:
content: public ConfigUnitsService(IConfigUnitsRepository configUnitsRepository, IOptions<ApiSettings> apiSettings, ILogger<ConfigUnitsService> logger)
parameters:
- id: configUnitsRepository
type: adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository
- id: apiSettings
type: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings}
- id: logger
type: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.ConfigUnitsService}
content.vb: Public Sub New(configUnitsRepository As IConfigUnitsRepository, apiSettings As IOptions(Of ApiSettings), logger As ILogger(Of ConfigUnitsService))
overload: adas_core.Application.Services.ConfigUnitsService.#ctor*
nameWithType.vb: ConfigUnitsService.New(IConfigUnitsRepository, IOptions(Of ApiSettings), ILogger(Of ConfigUnitsService))
fullName.vb: adas_core.Application.Services.ConfigUnitsService.New(adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository, Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.ApiSettings), Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.ConfigUnitsService))
name.vb: New(IConfigUnitsRepository, IOptions(Of ApiSettings), ILogger(Of ConfigUnitsService))
- uid: adas_core.Application.Services.ConfigUnitsService.Map``1(``0)
commentId: M:adas_core.Application.Services.ConfigUnitsService.Map``1(``0)
id: Map``1(``0)
parent: adas_core.Application.Services.ConfigUnitsService
langs:
- csharp
- vb
name: Map<T>(T)
nameWithType: ConfigUnitsService.Map<T>(T)
fullName: adas_core.Application.Services.ConfigUnitsService.Map<T>(T)
type: Method
source:
remote:
path: adas-core.Application/Services/ConfigUnitsService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Map
path: ../../adas-core.Application/Services/ConfigUnitsService.cs
startLine: 32
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Maps a patient observation using the unit configuration when configuration units are required.
If configuration units are not required, the observation's units are not specified, or no matching configuration is found, the original observation is returned unchanged.
example: []
syntax:
content: 'public Task<T> Map<T>(T obs) where T : BasePatientObservation'
parameters:
- id: obs
type: '{T}'
description: The patient observation to be mapped.
typeParameters:
- id: T
return:
type: System.Threading.Tasks.Task{{T}}
description: The mapped observation when a matching unit configuration is resolved; otherwise, the original observation.
content.vb: Public Function Map(Of T As BasePatientObservation)(obs As T) As Task(Of T)
overload: adas_core.Application.Services.ConfigUnitsService.Map*
implements:
- adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1({T})
nameWithType.vb: ConfigUnitsService.Map(Of T)(T)
fullName.vb: adas_core.Application.Services.ConfigUnitsService.Map(Of T)(T)
name.vb: Map(Of T)(T)
- uid: adas_core.Application.Services.ConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
commentId: M:adas_core.Application.Services.ConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
id: Map(adas_core.Domain.Models.Pumps.PumpObservation)
parent: adas_core.Application.Services.ConfigUnitsService
langs:
- csharp
- vb
name: Map(PumpObservation)
nameWithType: ConfigUnitsService.Map(PumpObservation)
fullName: adas_core.Application.Services.ConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
type: Method
source:
remote:
path: adas-core.Application/Services/ConfigUnitsService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Map
path: ../../adas-core.Application/Services/ConfigUnitsService.cs
startLine: 47
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Maps a <xref href="adas_core.Domain.Models.Pumps.PumpObservation" data-throw-if-not-resolved="false"></xref> by processing its pump value properties.
If configuration units are not required, the observation is returned unchanged; otherwise, the pump values are mapped via <code>MapPumpValues</code> and the observation is returned.
example: []
syntax:
content: public Task<PumpObservation> Map(PumpObservation obs)
parameters:
- id: obs
type: adas_core.Domain.Models.Pumps.PumpObservation
description: The <xref href="adas_core.Domain.Models.Pumps.PumpObservation" data-throw-if-not-resolved="false"></xref> to be mapped.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Pumps.PumpObservation}
description: The mapped <xref href="adas_core.Domain.Models.Pumps.PumpObservation" data-throw-if-not-resolved="false"></xref>, returned as-is when units configuration is not required or after pump value mapping otherwise.
content.vb: Public Function Map(obs As PumpObservation) As Task(Of PumpObservation)
overload: adas_core.Application.Services.ConfigUnitsService.Map*
implements:
- adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
- uid: adas_core.Application.Services.ConfigUnitsService.Get(System.String)
commentId: M:adas_core.Application.Services.ConfigUnitsService.Get(System.String)
id: Get(System.String)
parent: adas_core.Application.Services.ConfigUnitsService
langs:
- csharp
- vb
name: Get(string)
nameWithType: ConfigUnitsService.Get(string)
fullName: adas_core.Application.Services.ConfigUnitsService.Get(string)
type: Method
source:
remote:
path: adas-core.Application/Services/ConfigUnitsService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Get
path: ../../adas-core.Application/Services/ConfigUnitsService.cs
startLine: 117
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Retrieves a configuration unit item by its unique code from the configuration store.
Returns null when the configuration cannot be loaded or when no item matches the specified code.
example: []
syntax:
content: public Task<ConfigUnitItem?> Get(string code)
parameters:
- id: code
type: System.String
description: The unique code identifier of the configuration unit item to look up.
return:
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigUnitItem}
description: A task that represents the asynchronous operation. The task result contains the matching <xref href="adas_core.Domain.Models.MongoModels.ConfigUnitItem" data-throw-if-not-resolved="false"></xref>, or null if the configuration is unavailable or no item is found.
content.vb: Public Function [Get](code As String) As Task(Of ConfigUnitItem)
overload: adas_core.Application.Services.ConfigUnitsService.Get*
nameWithType.vb: ConfigUnitsService.Get(String)
fullName.vb: adas_core.Application.Services.ConfigUnitsService.Get(String)
name.vb: Get(String)
references:
- uid: adas_core.Application.Services
commentId: N:adas_core.Application.Services
href: adas_core.html
name: adas_core.Application.Services
nameWithType: adas_core.Application.Services
fullName: adas_core.Application.Services
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
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
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService
commentId: T:adas_core.Application.Services.Interfaces.IConfigUnitsService
parent: adas_core.Application.Services.Interfaces
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html
name: IConfigUnitsService
nameWithType: IConfigUnitsService
fullName: adas_core.Application.Services.Interfaces.IConfigUnitsService
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
parent: adas_core.Domain.Utils.ObjectUtils
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: adas_core.Application.Services.Interfaces
commentId: N:adas_core.Application.Services.Interfaces
href: adas_core.html
name: adas_core.Application.Services.Interfaces
nameWithType: adas_core.Application.Services.Interfaces
fullName: adas_core.Application.Services.Interfaces
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.NumberUtils
commentId: T:adas_core.Domain.Utils.NumberUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.NumberUtils.html
name: NumberUtils
nameWithType: NumberUtils
fullName: adas_core.Domain.Utils.NumberUtils
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
isExternal: true
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils
commentId: T:adas_core.Domain.Utils.ObjectUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.ObjectUtils.html
name: ObjectUtils
nameWithType: ObjectUtils
fullName: adas_core.Domain.Utils.ObjectUtils
- uid: adas_core.Domain.Utils
commentId: N:adas_core.Domain.Utils
href: adas_core.html
name: adas_core.Domain.Utils
nameWithType: adas_core.Domain.Utils
fullName: adas_core.Domain.Utils
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
- uid: adas_core.Application.Services.ConfigUnitsService.#ctor*
commentId: Overload:adas_core.Application.Services.ConfigUnitsService.#ctor
href: adas_core.Application.Services.ConfigUnitsService.html#adas_core_Application_Services_ConfigUnitsService__ctor_adas_core_Application_Repositories_Interfaces_IConfigUnitsRepository_Microsoft_Extensions_Options_IOptions_adas_core_Domain_Models_AppSettings_ApiSettings__Microsoft_Extensions_Logging_ILogger_adas_core_Application_Services_ConfigUnitsService__
name: ConfigUnitsService
nameWithType: ConfigUnitsService.ConfigUnitsService
fullName: adas_core.Application.Services.ConfigUnitsService.ConfigUnitsService
nameWithType.vb: ConfigUnitsService.New
fullName.vb: adas_core.Application.Services.ConfigUnitsService.New
name.vb: New
- uid: adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository
commentId: T:adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository
parent: adas_core.Application.Repositories.Interfaces
href: adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository.html
name: IConfigUnitsRepository
nameWithType: IConfigUnitsRepository
fullName: adas_core.Application.Repositories.Interfaces.IConfigUnitsRepository
- uid: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings}
commentId: T:Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings}
parent: Microsoft.Extensions.Options
definition: Microsoft.Extensions.Options.IOptions`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
name: IOptions<ApiSettings>
nameWithType: IOptions<ApiSettings>
fullName: Microsoft.Extensions.Options.IOptions<adas_core.Domain.Models.AppSettings.ApiSettings>
nameWithType.vb: IOptions(Of ApiSettings)
fullName.vb: Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.ApiSettings)
name.vb: IOptions(Of ApiSettings)
spec.csharp:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: <
- uid: adas_core.Domain.Models.AppSettings.ApiSettings
name: ApiSettings
href: adas_core.Domain.Models.AppSettings.ApiSettings.html
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.AppSettings.ApiSettings
name: ApiSettings
href: adas_core.Domain.Models.AppSettings.ApiSettings.html
- name: )
- uid: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.ConfigUnitsService}
commentId: T:Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.ConfigUnitsService}
parent: Microsoft.Extensions.Logging
definition: Microsoft.Extensions.Logging.ILogger`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
name: ILogger<ConfigUnitsService>
nameWithType: ILogger<ConfigUnitsService>
fullName: Microsoft.Extensions.Logging.ILogger<adas_core.Application.Services.ConfigUnitsService>
nameWithType.vb: ILogger(Of ConfigUnitsService)
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.ConfigUnitsService)
name.vb: ILogger(Of ConfigUnitsService)
spec.csharp:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: <
- uid: adas_core.Application.Services.ConfigUnitsService
name: ConfigUnitsService
href: adas_core.Application.Services.ConfigUnitsService.html
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Application.Services.ConfigUnitsService
name: ConfigUnitsService
href: adas_core.Application.Services.ConfigUnitsService.html
- name: )
- uid: adas_core.Application.Repositories.Interfaces
commentId: N:adas_core.Application.Repositories.Interfaces
href: adas_core.html
name: adas_core.Application.Repositories.Interfaces
nameWithType: adas_core.Application.Repositories.Interfaces
fullName: adas_core.Application.Repositories.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.Repositories
name: Repositories
href: adas_core.Application.Repositories.html
- name: .
- uid: adas_core.Application.Repositories.Interfaces
name: Interfaces
href: adas_core.Application.Repositories.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.Repositories
name: Repositories
href: adas_core.Application.Repositories.html
- name: .
- uid: adas_core.Application.Repositories.Interfaces
name: Interfaces
href: adas_core.Application.Repositories.Interfaces.html
- uid: Microsoft.Extensions.Options.IOptions`1
commentId: T:Microsoft.Extensions.Options.IOptions`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
name: IOptions<TOptions>
nameWithType: IOptions<TOptions>
fullName: Microsoft.Extensions.Options.IOptions<TOptions>
nameWithType.vb: IOptions(Of TOptions)
fullName.vb: Microsoft.Extensions.Options.IOptions(Of TOptions)
name.vb: IOptions(Of TOptions)
spec.csharp:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: <
- name: TOptions
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: (
- name: Of
- name: " "
- name: TOptions
- name: )
- uid: Microsoft.Extensions.Options
commentId: N:Microsoft.Extensions.Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
name: Microsoft.Extensions.Options
nameWithType: Microsoft.Extensions.Options
fullName: Microsoft.Extensions.Options
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Options
name: Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Options
name: Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options
- uid: Microsoft.Extensions.Logging.ILogger`1
commentId: T:Microsoft.Extensions.Logging.ILogger`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
name: ILogger<TCategoryName>
nameWithType: ILogger<TCategoryName>
fullName: Microsoft.Extensions.Logging.ILogger<TCategoryName>
nameWithType.vb: ILogger(Of TCategoryName)
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of TCategoryName)
name.vb: ILogger(Of TCategoryName)
spec.csharp:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: <
- name: TCategoryName
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: (
- name: Of
- name: " "
- name: TCategoryName
- name: )
- uid: Microsoft.Extensions.Logging
commentId: N:Microsoft.Extensions.Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
name: Microsoft.Extensions.Logging
nameWithType: Microsoft.Extensions.Logging
fullName: Microsoft.Extensions.Logging
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Logging
name: Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Logging
name: Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
- uid: adas_core.Application.Services.ConfigUnitsService.Map*
commentId: Overload:adas_core.Application.Services.ConfigUnitsService.Map
href: adas_core.Application.Services.ConfigUnitsService.html#adas_core_Application_Services_ConfigUnitsService_Map__1___0_
name: Map
nameWithType: ConfigUnitsService.Map
fullName: adas_core.Application.Services.ConfigUnitsService.Map
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1({T})
commentId: M:adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
parent: adas_core.Application.Services.Interfaces.IConfigUnitsService
definition: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map__1___0_
name: Map<T>(T)
nameWithType: IConfigUnitsService.Map<T>(T)
fullName: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map<T>(T)
nameWithType.vb: IConfigUnitsService.Map(Of T)(T)
fullName.vb: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(Of T)(T)
name.vb: Map(Of T)(T)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
name: Map
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map__1___0_
- name: <
- name: T
- name: '>'
- name: (
- name: T
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
name: Map
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map__1___0_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- name: T
- name: )
- uid: '{T}'
commentId: '!:T'
definition: T
name: T
nameWithType: T
fullName: T
- uid: System.Threading.Tasks.Task{{T}}
commentId: T:System.Threading.Tasks.Task{``0}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<T>
nameWithType: Task<T>
fullName: System.Threading.Tasks.Task<T>
nameWithType.vb: Task(Of T)
fullName.vb: System.Threading.Tasks.Task(Of T)
name.vb: Task(Of T)
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: T
- 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: T
- name: )
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
commentId: M:adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map__1___0_
name: Map<T>(T)
nameWithType: IConfigUnitsService.Map<T>(T)
fullName: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map<T>(T)
nameWithType.vb: IConfigUnitsService.Map(Of T)(T)
fullName.vb: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(Of T)(T)
name.vb: Map(Of T)(T)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
name: Map
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map__1___0_
- name: <
- name: T
- name: '>'
- name: (
- name: T
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map``1(``0)
name: Map
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map__1___0_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- name: T
- name: )
- uid: T
name: T
nameWithType: T
fullName: T
- 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.Pumps.PumpObservation
commentId: T:adas_core.Domain.Models.Pumps.PumpObservation
parent: adas_core.Domain.Models.Pumps
href: adas_core.Domain.Models.Pumps.PumpObservation.html
name: PumpObservation
nameWithType: PumpObservation
fullName: adas_core.Domain.Models.Pumps.PumpObservation
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
commentId: M:adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
parent: adas_core.Application.Services.Interfaces.IConfigUnitsService
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map_adas_core_Domain_Models_Pumps_PumpObservation_
name: Map(PumpObservation)
nameWithType: IConfigUnitsService.Map(PumpObservation)
fullName: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
name: Map
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map_adas_core_Domain_Models_Pumps_PumpObservation_
- name: (
- uid: adas_core.Domain.Models.Pumps.PumpObservation
name: PumpObservation
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IConfigUnitsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
name: Map
href: adas_core.Application.Services.Interfaces.IConfigUnitsService.html#adas_core_Application_Services_Interfaces_IConfigUnitsService_Map_adas_core_Domain_Models_Pumps_PumpObservation_
- name: (
- uid: adas_core.Domain.Models.Pumps.PumpObservation
name: PumpObservation
- name: )
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Pumps.PumpObservation}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Pumps.PumpObservation}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<PumpObservation>
nameWithType: Task<PumpObservation>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.Pumps.PumpObservation>
nameWithType.vb: Task(Of PumpObservation)
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Pumps.PumpObservation)
name.vb: Task(Of PumpObservation)
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.Pumps.PumpObservation
name: PumpObservation
- 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.Pumps.PumpObservation
name: PumpObservation
- name: )
- uid: adas_core.Domain.Models.Pumps
commentId: N:adas_core.Domain.Models.Pumps
href: adas_core.html
name: adas_core.Domain.Models.Pumps
nameWithType: adas_core.Domain.Models.Pumps
fullName: adas_core.Domain.Models.Pumps
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.Pumps
name: Pumps
href: adas_core.Domain.Models.Pumps.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.Pumps
name: Pumps
href: adas_core.Domain.Models.Pumps.html
- uid: adas_core.Domain.Models.MongoModels.ConfigUnitItem
commentId: T:adas_core.Domain.Models.MongoModels.ConfigUnitItem
href: adas_core.Domain.Models.MongoModels.ConfigUnitItem.html
name: ConfigUnitItem
nameWithType: ConfigUnitItem
fullName: adas_core.Domain.Models.MongoModels.ConfigUnitItem
- uid: adas_core.Application.Services.ConfigUnitsService.Get*
commentId: Overload:adas_core.Application.Services.ConfigUnitsService.Get
href: adas_core.Application.Services.ConfigUnitsService.html#adas_core_Application_Services_ConfigUnitsService_Get_System_String_
name: Get
nameWithType: ConfigUnitsService.Get
fullName: adas_core.Application.Services.ConfigUnitsService.Get
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigUnitItem}
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigUnitItem}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<ConfigUnitItem>
nameWithType: Task<ConfigUnitItem>
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.MongoModels.ConfigUnitItem>
nameWithType.vb: Task(Of ConfigUnitItem)
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.ConfigUnitItem)
name.vb: Task(Of ConfigUnitItem)
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.ConfigUnitItem
name: ConfigUnitItem
- 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.ConfigUnitItem
name: ConfigUnitItem
- name: )