1033 lines
44 KiB
YAML
1033 lines
44 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
id: IConfigPumpsService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
children:
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems(System.String)
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById(System.String)
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.RetentionActions(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
- adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: IConfigPumpsService
|
|
nameWithType: IConfigPumpsService
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
type: Interface
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: IConfigPumpsService
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 6
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
syntax:
|
|
content: public interface IConfigPumpsService
|
|
content.vb: Public Interface IConfigPumpsService
|
|
derivedClasses:
|
|
- adas_core.Application.Services.ConfigPumpsService
|
|
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.IConfigPumpsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
id: Map(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Map(PumpObservation)
|
|
nameWithType: IConfigPumpsService.Map(PumpObservation)
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.Map(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: Map
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 13
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously maps the source PumpObservation to a new PumpObservation instance, transforming its data into the target representation.
|
|
example: []
|
|
syntax:
|
|
content: Task<PumpObservation> Map(PumpObservation obs)
|
|
parameters:
|
|
- id: obs
|
|
type: adas_core.Domain.Models.Pumps.PumpObservation
|
|
description: The source PumpObservation to be mapped.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Pumps.PumpObservation}
|
|
description: A task that represents the asynchronous mapping operation, containing the resulting PumpObservation.
|
|
content.vb: Function Map(obs As PumpObservation) As Task(Of PumpObservation)
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.Map*
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs
|
|
id: GetAllPumpConfigs
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetAllPumpConfigs()
|
|
nameWithType: IConfigPumpsService.GetAllPumpConfigs()
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs()
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetAllPumpConfigs
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 18
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Retrieves all available pump configurations from the configuration store.
|
|
example: []
|
|
syntax:
|
|
content: Task<List<ConfigPumps>?> GetAllPumpConfigs()
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.ConfigPumps}}
|
|
description: A task containing a list of <xref href="adas_core.Domain.Models.MongoModels.ConfigPumps" data-throw-if-not-resolved="false"></xref> with all pump configurations, or <code>null</code> if no configurations are available.
|
|
content.vb: Function GetAllPumpConfigs() As Task(Of List(Of ConfigPumps))
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs*
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems(System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems(System.String)
|
|
id: GetConfigItems(System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetConfigItems(string)
|
|
nameWithType: IConfigPumpsService.GetConfigItems(string)
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems(string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetConfigItems
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 25
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: >-
|
|
Asynchronously retrieves the configuration pump items associated with the specified identifier.
|
|
|
|
Returns null if no configuration items are found for the given id.
|
|
example: []
|
|
syntax:
|
|
content: Task<List<ConfigPumpItem>?> GetConfigItems(string id)
|
|
parameters:
|
|
- id: id
|
|
type: System.String
|
|
description: The unique identifier used to look up the configuration items.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.ConfigPumpItem}}
|
|
description: A task containing a list of ConfigPumpItem objects if found, or null if no items exist for the specified id.
|
|
content.vb: Function GetConfigItems(id As String) As Task(Of List(Of ConfigPumpItem))
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems*
|
|
nameWithType.vb: IConfigPumpsService.GetConfigItems(String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems(String)
|
|
name.vb: GetConfigItems(String)
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById(System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById(System.String)
|
|
id: GetPumpConfigById(System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetPumpConfigById(string)
|
|
nameWithType: IConfigPumpsService.GetPumpConfigById(string)
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById(string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetPumpConfigById
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 31
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously retrieves the pump configuration that matches the specified identifier.
|
|
example: []
|
|
syntax:
|
|
content: Task<ConfigPumps?> GetPumpConfigById(string id)
|
|
parameters:
|
|
- id: id
|
|
type: System.String
|
|
description: The unique identifier of the pump configuration to look up.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigPumps}
|
|
description: A task that represents the asynchronous operation. The task result contains the matching <xref href="adas_core.Domain.Models.MongoModels.ConfigPumps" data-throw-if-not-resolved="false"></xref> configuration if found; otherwise, <code>null</code> when no configuration exists for the given identifier.
|
|
content.vb: Function GetPumpConfigById(id As String) As Task(Of ConfigPumps)
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById*
|
|
nameWithType.vb: IConfigPumpsService.GetPumpConfigById(String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById(String)
|
|
name.vb: GetPumpConfigById(String)
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
id: UpdatePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: UpdatePumpConfig(ConfigPumps)
|
|
nameWithType: IConfigPumpsService.UpdatePumpConfig(ConfigPumps)
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: UpdatePumpConfig
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 37
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Updates the pump configuration asynchronously and returns the updated configuration.
|
|
example: []
|
|
syntax:
|
|
content: Task<ConfigPumps?> UpdatePumpConfig(ConfigPumps pumpConfig)
|
|
parameters:
|
|
- id: pumpConfig
|
|
type: adas_core.Domain.Models.MongoModels.ConfigPumps
|
|
description: The pump configuration to update.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigPumps}
|
|
description: A task that represents the asynchronous operation, containing the updated <xref href="adas_core.Domain.Models.MongoModels.ConfigPumps" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if the configuration was not found.
|
|
content.vb: Function UpdatePumpConfig(pumpConfig As ConfigPumps) As Task(Of ConfigPumps)
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig*
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
id: InsertPumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: InsertPumpConfig(ConfigPumps)
|
|
nameWithType: IConfigPumpsService.InsertPumpConfig(ConfigPumps)
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: InsertPumpConfig
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 43
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Inserts a new pump configuration into the data store.
|
|
example: []
|
|
syntax:
|
|
content: Task<ConfigPumps?> InsertPumpConfig(ConfigPumps pumpConfig)
|
|
parameters:
|
|
- id: pumpConfig
|
|
type: adas_core.Domain.Models.MongoModels.ConfigPumps
|
|
description: The pump configuration to insert.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigPumps}
|
|
description: The inserted <xref href="adas_core.Domain.Models.MongoModels.ConfigPumps" data-throw-if-not-resolved="false"></xref> entity, or <code>null</code> if the insertion was not performed.
|
|
content.vb: Function InsertPumpConfig(pumpConfig As ConfigPumps) As Task(Of ConfigPumps)
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig*
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
id: DeletePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: DeletePumpConfig(ConfigPumps)
|
|
nameWithType: IConfigPumpsService.DeletePumpConfig(ConfigPumps)
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig(adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: DeletePumpConfig
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 49
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously deletes the specified pump configuration.
|
|
example: []
|
|
syntax:
|
|
content: Task<bool> DeletePumpConfig(ConfigPumps config)
|
|
parameters:
|
|
- id: config
|
|
type: adas_core.Domain.Models.MongoModels.ConfigPumps
|
|
description: The pump configuration to delete.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: A task that represents the asynchronous operation. The task result contains a boolean indicating whether the deletion was successful.
|
|
content.vb: Function DeletePumpConfig(config As ConfigPumps) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig*
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.RetentionActions(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IConfigPumpsService.RetentionActions(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
id: RetentionActions(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
parent: adas_core.Application.Services.Interfaces.IConfigPumpsService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: RetentionActions(PumpObservation)
|
|
nameWithType: IConfigPumpsService.RetentionActions(PumpObservation)
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.RetentionActions(adas_core.Domain.Models.Pumps.PumpObservation)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: RetentionActions
|
|
path: ../../adas-core.Application/Services/Interfaces/IConfigPumpsService.cs
|
|
startLine: 55
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously evaluates and applies retention actions for a pump observation, returning the resulting retention outcome.
|
|
example: []
|
|
syntax:
|
|
content: Task<ObservatitonRetentionResult?> RetentionActions(PumpObservation obs)
|
|
parameters:
|
|
- id: obs
|
|
type: adas_core.Domain.Models.Pumps.PumpObservation
|
|
description: The pump observation to process for retention actions.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.ObservatitonRetentionResult}
|
|
description: A task that represents the asynchronous operation, containing the retention result, or null if no retention action applies.
|
|
content.vb: Function RetentionActions(obs As PumpObservation) As Task(Of ObservatitonRetentionResult)
|
|
overload: adas_core.Application.Services.Interfaces.IConfigPumpsService.RetentionActions*
|
|
references:
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
commentId: N:adas_core.Application.Services.Interfaces
|
|
href: adas_core.html
|
|
name: adas_core.Application.Services.Interfaces
|
|
nameWithType: adas_core.Application.Services.Interfaces
|
|
fullName: adas_core.Application.Services.Interfaces
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Services.Interfaces.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Services.Interfaces.html
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
parent: adas_core.Domain.Utils.ObjectUtils
|
|
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.NumberUtils
|
|
commentId: T:adas_core.Domain.Utils.NumberUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.NumberUtils.html
|
|
name: NumberUtils
|
|
nameWithType: NumberUtils
|
|
fullName: adas_core.Domain.Utils.NumberUtils
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils
|
|
commentId: T:adas_core.Domain.Utils.ObjectUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.ObjectUtils.html
|
|
name: ObjectUtils
|
|
nameWithType: ObjectUtils
|
|
fullName: adas_core.Domain.Utils.ObjectUtils
|
|
- uid: adas_core.Domain.Utils
|
|
commentId: N:adas_core.Domain.Utils
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Utils
|
|
nameWithType: adas_core.Domain.Utils
|
|
fullName: adas_core.Domain.Utils
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.Map*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.Map
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_Map_adas_core_Domain_Models_Pumps_PumpObservation_
|
|
name: Map
|
|
nameWithType: IConfigPumpsService.Map
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.Map
|
|
- 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: 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: 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.MongoModels.ConfigPumps
|
|
commentId: T:adas_core.Domain.Models.MongoModels.ConfigPumps
|
|
parent: adas_core.Domain.Models.MongoModels
|
|
href: adas_core.Domain.Models.MongoModels.ConfigPumps.html
|
|
name: ConfigPumps
|
|
nameWithType: ConfigPumps
|
|
fullName: adas_core.Domain.Models.MongoModels.ConfigPumps
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_GetAllPumpConfigs
|
|
name: GetAllPumpConfigs
|
|
nameWithType: IConfigPumpsService.GetAllPumpConfigs
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetAllPumpConfigs
|
|
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.ConfigPumps}}
|
|
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.ConfigPumps}}
|
|
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<ConfigPumps>>
|
|
nameWithType: Task<List<ConfigPumps>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.ConfigPumps>>
|
|
nameWithType.vb: Task(Of List(Of ConfigPumps))
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.ConfigPumps))
|
|
name.vb: Task(Of List(Of ConfigPumps))
|
|
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.ConfigPumps
|
|
name: ConfigPumps
|
|
- 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.ConfigPumps
|
|
name: ConfigPumps
|
|
- 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.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_GetConfigItems_System_String_
|
|
name: GetConfigItems
|
|
nameWithType: IConfigPumpsService.GetConfigItems
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetConfigItems
|
|
- 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.MongoModels.ConfigPumpItem}}
|
|
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.ConfigPumpItem}}
|
|
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<ConfigPumpItem>>
|
|
nameWithType: Task<List<ConfigPumpItem>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.ConfigPumpItem>>
|
|
nameWithType.vb: Task(Of List(Of ConfigPumpItem))
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.ConfigPumpItem))
|
|
name.vb: Task(Of List(Of ConfigPumpItem))
|
|
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.ConfigPumpItem
|
|
name: ConfigPumpItem
|
|
- 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.ConfigPumpItem
|
|
name: ConfigPumpItem
|
|
- 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.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_GetPumpConfigById_System_String_
|
|
name: GetPumpConfigById
|
|
nameWithType: IConfigPumpsService.GetPumpConfigById
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.GetPumpConfigById
|
|
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigPumps}
|
|
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.ConfigPumps}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<ConfigPumps>
|
|
nameWithType: Task<ConfigPumps>
|
|
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.MongoModels.ConfigPumps>
|
|
nameWithType.vb: Task(Of ConfigPumps)
|
|
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.ConfigPumps)
|
|
name.vb: Task(Of ConfigPumps)
|
|
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.ConfigPumps
|
|
name: ConfigPumps
|
|
- 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.ConfigPumps
|
|
name: ConfigPumps
|
|
- name: )
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_UpdatePumpConfig_adas_core_Domain_Models_MongoModels_ConfigPumps_
|
|
name: UpdatePumpConfig
|
|
nameWithType: IConfigPumpsService.UpdatePumpConfig
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.UpdatePumpConfig
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_InsertPumpConfig_adas_core_Domain_Models_MongoModels_ConfigPumps_
|
|
name: InsertPumpConfig
|
|
nameWithType: IConfigPumpsService.InsertPumpConfig
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.InsertPumpConfig
|
|
- uid: adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_DeletePumpConfig_adas_core_Domain_Models_MongoModels_ConfigPumps_
|
|
name: DeletePumpConfig
|
|
nameWithType: IConfigPumpsService.DeletePumpConfig
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.DeletePumpConfig
|
|
- 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.Application.Services.Interfaces.IConfigPumpsService.RetentionActions*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IConfigPumpsService.RetentionActions
|
|
href: adas_core.Application.Services.Interfaces.IConfigPumpsService.html#adas_core_Application_Services_Interfaces_IConfigPumpsService_RetentionActions_adas_core_Domain_Models_Pumps_PumpObservation_
|
|
name: RetentionActions
|
|
nameWithType: IConfigPumpsService.RetentionActions
|
|
fullName: adas_core.Application.Services.Interfaces.IConfigPumpsService.RetentionActions
|
|
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.ObservatitonRetentionResult}
|
|
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.ObservatitonRetentionResult}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<ObservatitonRetentionResult>
|
|
nameWithType: Task<ObservatitonRetentionResult>
|
|
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.ObservatitonRetentionResult>
|
|
nameWithType.vb: Task(Of ObservatitonRetentionResult)
|
|
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.ObservatitonRetentionResult)
|
|
name.vb: Task(Of ObservatitonRetentionResult)
|
|
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.ObservatitonRetentionResult
|
|
name: ObservatitonRetentionResult
|
|
- 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.ObservatitonRetentionResult
|
|
name: ObservatitonRetentionResult
|
|
- name: )
|