rama creada apartir de master en j
This commit is contained in:
@@ -0,0 +1,721 @@
|
||||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: adas_core.Application.Services.Interfaces.IDeviceService
|
||||
commentId: T:adas_core.Application.Services.Interfaces.IDeviceService
|
||||
id: IDeviceService
|
||||
parent: adas_core.Application.Services.Interfaces
|
||||
children:
|
||||
- adas_core.Application.Services.Interfaces.IDeviceService.Create(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
- adas_core.Application.Services.Interfaces.IDeviceService.Delete(MongoDB.Bson.ObjectId)
|
||||
- adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
- adas_core.Application.Services.Interfaces.IDeviceService.Update(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: IDeviceService
|
||||
nameWithType: IDeviceService
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService
|
||||
type: Interface
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: IDeviceService
|
||||
path: ../../adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
startLine: 6
|
||||
assemblies:
|
||||
- adas-core.Application
|
||||
namespace: adas_core.Application.Services.Interfaces
|
||||
syntax:
|
||||
content: public interface IDeviceService
|
||||
content.vb: Public Interface IDeviceService
|
||||
derivedClasses:
|
||||
- adas_core.Application.Services.DeviceService
|
||||
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.IDeviceService.Create(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
commentId: M:adas_core.Application.Services.Interfaces.IDeviceService.Create(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
id: Create(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
parent: adas_core.Application.Services.Interfaces.IDeviceService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Create(DeviceDto)
|
||||
nameWithType: IDeviceService.Create(DeviceDto)
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.Create(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: Create
|
||||
path: ../../adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
startLine: 13
|
||||
assemblies:
|
||||
- adas-core.Application
|
||||
namespace: adas_core.Application.Services.Interfaces
|
||||
summary: Creates a new <xref href="adas_core.Domain.Models.MongoModels.Device" data-throw-if-not-resolved="false"></xref> from the provided <xref href="adas_core.Domain.Models.DTO.DeviceDto" data-throw-if-not-resolved="false"></xref>.
|
||||
example: []
|
||||
syntax:
|
||||
content: Task<Device?> Create(DeviceDto device)
|
||||
parameters:
|
||||
- id: device
|
||||
type: adas_core.Domain.Models.DTO.DeviceDto
|
||||
description: The data transfer object containing the information used to create the device.
|
||||
return:
|
||||
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Device}
|
||||
description: A task that represents the asynchronous create operation. The task result contains the created <xref href="adas_core.Domain.Models.MongoModels.Device" data-throw-if-not-resolved="false"></xref>, or <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> if the device could not be created.
|
||||
content.vb: Function Create(device As DeviceDto) As Task(Of Device)
|
||||
overload: adas_core.Application.Services.Interfaces.IDeviceService.Create*
|
||||
- uid: adas_core.Application.Services.Interfaces.IDeviceService.Delete(MongoDB.Bson.ObjectId)
|
||||
commentId: M:adas_core.Application.Services.Interfaces.IDeviceService.Delete(MongoDB.Bson.ObjectId)
|
||||
id: Delete(MongoDB.Bson.ObjectId)
|
||||
parent: adas_core.Application.Services.Interfaces.IDeviceService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Delete(ObjectId)
|
||||
nameWithType: IDeviceService.Delete(ObjectId)
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.Delete(MongoDB.Bson.ObjectId)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: Delete
|
||||
path: ../../adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
startLine: 19
|
||||
assemblies:
|
||||
- adas-core.Application
|
||||
namespace: adas_core.Application.Services.Interfaces
|
||||
summary: Asynchronously deletes the object identified by the specified identifier.
|
||||
example: []
|
||||
syntax:
|
||||
content: Task<bool> Delete(ObjectId objectId)
|
||||
parameters:
|
||||
- id: objectId
|
||||
type: MongoDB.Bson.ObjectId
|
||||
description: The unique identifier of the object to delete.
|
||||
return:
|
||||
type: System.Threading.Tasks.Task{System.Boolean}
|
||||
description: A task that represents the asynchronous delete operation. The result is <code>true</code> if the object was deleted; otherwise, <code>false</code>.
|
||||
content.vb: Function Delete(objectId As ObjectId) As Task(Of Boolean)
|
||||
overload: adas_core.Application.Services.Interfaces.IDeviceService.Delete*
|
||||
- uid: adas_core.Application.Services.Interfaces.IDeviceService.Update(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
commentId: M:adas_core.Application.Services.Interfaces.IDeviceService.Update(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
id: Update(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
parent: adas_core.Application.Services.Interfaces.IDeviceService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Update(DeviceDto)
|
||||
nameWithType: IDeviceService.Update(DeviceDto)
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.Update(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: Update
|
||||
path: ../../adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
startLine: 25
|
||||
assemblies:
|
||||
- adas-core.Application
|
||||
namespace: adas_core.Application.Services.Interfaces
|
||||
summary: Updates an existing device using the provided data transfer object.
|
||||
example: []
|
||||
syntax:
|
||||
content: Task<Device?> Update(DeviceDto device)
|
||||
parameters:
|
||||
- id: device
|
||||
type: adas_core.Domain.Models.DTO.DeviceDto
|
||||
description: The data transfer object containing the updated device information.
|
||||
return:
|
||||
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Device}
|
||||
description: A task that represents the asynchronous operation. The task result contains the updated device, or <code>null</code> if the device was not found.
|
||||
content.vb: Function Update(device As DeviceDto) As Task(Of Device)
|
||||
overload: adas_core.Application.Services.Interfaces.IDeviceService.Update*
|
||||
- uid: adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
commentId: M:adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
id: ReceiveEvent(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
parent: adas_core.Application.Services.Interfaces.IDeviceService
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ReceiveEvent(DeviceDto)
|
||||
nameWithType: IDeviceService.ReceiveEvent(DeviceDto)
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent(adas_core.Domain.Models.DTO.DeviceDto)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
branch: document/release/1.0.1
|
||||
repo: https://git.teralevel.io/adas/adas-core.git
|
||||
id: ReceiveEvent
|
||||
path: ../../adas-core.Application/Services/Interfaces/IDeviceService.cs
|
||||
startLine: 32
|
||||
assemblies:
|
||||
- adas-core.Application
|
||||
namespace: adas_core.Application.Services.Interfaces
|
||||
summary: >-
|
||||
Processes an incoming event for the specified device and returns the associated <xref href="adas_core.Domain.Models.MongoModels.Device" data-throw-if-not-resolved="false"></xref>.
|
||||
|
||||
Returns <code>null</code> when the device referenced by the event cannot be found.
|
||||
example: []
|
||||
syntax:
|
||||
content: Task<Device?> ReceiveEvent(DeviceDto device)
|
||||
parameters:
|
||||
- id: device
|
||||
type: adas_core.Domain.Models.DTO.DeviceDto
|
||||
description: The device data transfer object carrying the event information to be processed.
|
||||
return:
|
||||
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Device}
|
||||
description: A task that represents the asynchronous operation, containing the resolved <xref href="adas_core.Domain.Models.MongoModels.Device" data-throw-if-not-resolved="false"></xref> or <code>null</code> if no matching device was found.
|
||||
content.vb: Function ReceiveEvent(device As DeviceDto) As Task(Of Device)
|
||||
overload: adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent*
|
||||
references:
|
||||
- uid: adas_core.Application.Services.Interfaces
|
||||
commentId: N:adas_core.Application.Services.Interfaces
|
||||
href: adas_core.html
|
||||
name: adas_core.Application.Services.Interfaces
|
||||
nameWithType: adas_core.Application.Services.Interfaces
|
||||
fullName: adas_core.Application.Services.Interfaces
|
||||
spec.csharp:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Application
|
||||
name: Application
|
||||
href: adas_core.Application.html
|
||||
- name: .
|
||||
- uid: adas_core.Application.Services
|
||||
name: Services
|
||||
href: adas_core.Application.Services.html
|
||||
- name: .
|
||||
- uid: adas_core.Application.Services.Interfaces
|
||||
name: Interfaces
|
||||
href: adas_core.Application.Services.Interfaces.html
|
||||
spec.vb:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Application
|
||||
name: Application
|
||||
href: adas_core.Application.html
|
||||
- name: .
|
||||
- uid: adas_core.Application.Services
|
||||
name: Services
|
||||
href: adas_core.Application.Services.html
|
||||
- name: .
|
||||
- uid: adas_core.Application.Services.Interfaces
|
||||
name: Interfaces
|
||||
href: adas_core.Application.Services.Interfaces.html
|
||||
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
parent: adas_core.Domain.Utils.NumberUtils
|
||||
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
name: IsNumber(object)
|
||||
nameWithType: NumberUtils.IsNumber(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
||||
nameWithType.vb: NumberUtils.IsNumber(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
||||
name.vb: IsNumber(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
parent: adas_core.Domain.Utils.NumberUtils
|
||||
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
name: ToDouble(object)
|
||||
nameWithType: NumberUtils.ToDouble(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
||||
nameWithType.vb: NumberUtils.ToDouble(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
||||
name.vb: ToDouble(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
||||
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
parent: adas_core.Domain.Utils.ObjectUtils
|
||||
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
name: ToStr(object)
|
||||
nameWithType: ObjectUtils.ToStr(object)
|
||||
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
||||
nameWithType.vb: ObjectUtils.ToStr(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
||||
name.vb: ToStr(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
isExternal: true
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
name: IsNumber(object)
|
||||
nameWithType: NumberUtils.IsNumber(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
||||
nameWithType.vb: NumberUtils.IsNumber(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
||||
name.vb: IsNumber(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
||||
name: IsNumber
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.NumberUtils
|
||||
commentId: T:adas_core.Domain.Utils.NumberUtils
|
||||
parent: adas_core.Domain.Utils
|
||||
href: adas_core.Domain.Utils.NumberUtils.html
|
||||
name: NumberUtils
|
||||
nameWithType: NumberUtils
|
||||
fullName: adas_core.Domain.Utils.NumberUtils
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
isExternal: true
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
name: ToDouble(object)
|
||||
nameWithType: NumberUtils.ToDouble(object)
|
||||
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
||||
nameWithType.vb: NumberUtils.ToDouble(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
||||
name.vb: ToDouble(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
||||
name: ToDouble
|
||||
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
isExternal: true
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
name: ToStr(object)
|
||||
nameWithType: ObjectUtils.ToStr(object)
|
||||
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
||||
nameWithType.vb: ObjectUtils.ToStr(Object)
|
||||
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
||||
name.vb: ToStr(Object)
|
||||
spec.csharp:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
||||
name: ToStr
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Utils.ObjectUtils
|
||||
commentId: T:adas_core.Domain.Utils.ObjectUtils
|
||||
parent: adas_core.Domain.Utils
|
||||
href: adas_core.Domain.Utils.ObjectUtils.html
|
||||
name: ObjectUtils
|
||||
nameWithType: ObjectUtils
|
||||
fullName: adas_core.Domain.Utils.ObjectUtils
|
||||
- uid: adas_core.Domain.Utils
|
||||
commentId: N:adas_core.Domain.Utils
|
||||
href: adas_core.html
|
||||
name: adas_core.Domain.Utils
|
||||
nameWithType: adas_core.Domain.Utils
|
||||
fullName: adas_core.Domain.Utils
|
||||
spec.csharp:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain
|
||||
name: Domain
|
||||
href: adas_core.Domain.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Utils
|
||||
name: Utils
|
||||
href: adas_core.Domain.Utils.html
|
||||
spec.vb:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain
|
||||
name: Domain
|
||||
href: adas_core.Domain.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Utils
|
||||
name: Utils
|
||||
href: adas_core.Domain.Utils.html
|
||||
- uid: adas_core.Domain.Models.MongoModels.Device
|
||||
commentId: T:adas_core.Domain.Models.MongoModels.Device
|
||||
parent: adas_core.Domain.Models.MongoModels
|
||||
href: adas_core.Domain.Models.MongoModels.Device.html
|
||||
name: Device
|
||||
nameWithType: Device
|
||||
fullName: adas_core.Domain.Models.MongoModels.Device
|
||||
- uid: adas_core.Domain.Models.DTO.DeviceDto
|
||||
commentId: T:adas_core.Domain.Models.DTO.DeviceDto
|
||||
parent: adas_core.Domain.Models.DTO
|
||||
href: adas_core.Domain.Models.DTO.DeviceDto.html
|
||||
name: DeviceDto
|
||||
nameWithType: DeviceDto
|
||||
fullName: adas_core.Domain.Models.DTO.DeviceDto
|
||||
- uid: adas_core.Application.Services.Interfaces.IDeviceService.Create*
|
||||
commentId: Overload:adas_core.Application.Services.Interfaces.IDeviceService.Create
|
||||
href: adas_core.Application.Services.Interfaces.IDeviceService.html#adas_core_Application_Services_Interfaces_IDeviceService_Create_adas_core_Domain_Models_DTO_DeviceDto_
|
||||
name: Create
|
||||
nameWithType: IDeviceService.Create
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.Create
|
||||
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Device}
|
||||
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Device}
|
||||
parent: System.Threading.Tasks
|
||||
definition: System.Threading.Tasks.Task`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
||||
name: Task<Device>
|
||||
nameWithType: Task<Device>
|
||||
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.MongoModels.Device>
|
||||
nameWithType.vb: Task(Of Device)
|
||||
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.Device)
|
||||
name.vb: Task(Of Device)
|
||||
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.Device
|
||||
name: Device
|
||||
- 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.Device
|
||||
name: Device
|
||||
- name: )
|
||||
- uid: adas_core.Domain.Models.MongoModels
|
||||
commentId: N:adas_core.Domain.Models.MongoModels
|
||||
href: adas_core.html
|
||||
name: adas_core.Domain.Models.MongoModels
|
||||
nameWithType: adas_core.Domain.Models.MongoModels
|
||||
fullName: adas_core.Domain.Models.MongoModels
|
||||
spec.csharp:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain
|
||||
name: Domain
|
||||
href: adas_core.Domain.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Models
|
||||
name: Models
|
||||
href: adas_core.Domain.Models.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Models.MongoModels
|
||||
name: MongoModels
|
||||
href: adas_core.Domain.Models.MongoModels.html
|
||||
spec.vb:
|
||||
- uid: adas_core
|
||||
name: adas_core
|
||||
href: adas_core.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain
|
||||
name: Domain
|
||||
href: adas_core.Domain.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Models
|
||||
name: Models
|
||||
href: adas_core.Domain.Models.html
|
||||
- name: .
|
||||
- uid: adas_core.Domain.Models.MongoModels
|
||||
name: MongoModels
|
||||
href: adas_core.Domain.Models.MongoModels.html
|
||||
- uid: adas_core.Domain.Models.DTO
|
||||
commentId: N:adas_core.Domain.Models.DTO
|
||||
href: adas_core.html
|
||||
name: adas_core.Domain.Models.DTO
|
||||
nameWithType: adas_core.Domain.Models.DTO
|
||||
fullName: adas_core.Domain.Models.DTO
|
||||
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.DTO
|
||||
name: DTO
|
||||
href: adas_core.Domain.Models.DTO.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.DTO
|
||||
name: DTO
|
||||
href: adas_core.Domain.Models.DTO.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.Application.Services.Interfaces.IDeviceService.Delete*
|
||||
commentId: Overload:adas_core.Application.Services.Interfaces.IDeviceService.Delete
|
||||
href: adas_core.Application.Services.Interfaces.IDeviceService.html#adas_core_Application_Services_Interfaces_IDeviceService_Delete_MongoDB_Bson_ObjectId_
|
||||
name: Delete
|
||||
nameWithType: IDeviceService.Delete
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.Delete
|
||||
- uid: MongoDB.Bson.ObjectId
|
||||
commentId: T:MongoDB.Bson.ObjectId
|
||||
parent: MongoDB.Bson
|
||||
isExternal: true
|
||||
name: ObjectId
|
||||
nameWithType: ObjectId
|
||||
fullName: MongoDB.Bson.ObjectId
|
||||
- uid: System.Threading.Tasks.Task{System.Boolean}
|
||||
commentId: T:System.Threading.Tasks.Task{System.Boolean}
|
||||
parent: System.Threading.Tasks
|
||||
definition: System.Threading.Tasks.Task`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
||||
name: Task<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: MongoDB.Bson
|
||||
commentId: N:MongoDB.Bson
|
||||
isExternal: true
|
||||
name: MongoDB.Bson
|
||||
nameWithType: MongoDB.Bson
|
||||
fullName: MongoDB.Bson
|
||||
spec.csharp:
|
||||
- uid: MongoDB
|
||||
name: MongoDB
|
||||
isExternal: true
|
||||
- name: .
|
||||
- uid: MongoDB.Bson
|
||||
name: Bson
|
||||
isExternal: true
|
||||
spec.vb:
|
||||
- uid: MongoDB
|
||||
name: MongoDB
|
||||
isExternal: true
|
||||
- name: .
|
||||
- uid: MongoDB.Bson
|
||||
name: Bson
|
||||
isExternal: true
|
||||
- uid: adas_core.Application.Services.Interfaces.IDeviceService.Update*
|
||||
commentId: Overload:adas_core.Application.Services.Interfaces.IDeviceService.Update
|
||||
href: adas_core.Application.Services.Interfaces.IDeviceService.html#adas_core_Application_Services_Interfaces_IDeviceService_Update_adas_core_Domain_Models_DTO_DeviceDto_
|
||||
name: Update
|
||||
nameWithType: IDeviceService.Update
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.Update
|
||||
- uid: adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent*
|
||||
commentId: Overload:adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent
|
||||
href: adas_core.Application.Services.Interfaces.IDeviceService.html#adas_core_Application_Services_Interfaces_IDeviceService_ReceiveEvent_adas_core_Domain_Models_DTO_DeviceDto_
|
||||
name: ReceiveEvent
|
||||
nameWithType: IDeviceService.ReceiveEvent
|
||||
fullName: adas_core.Application.Services.Interfaces.IDeviceService.ReceiveEvent
|
||||
Reference in New Issue
Block a user