### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.CameraService commentId: T:adas_core.Application.Services.CameraService id: CameraService parent: adas_core.Application.Services children: - adas_core.Application.Services.CameraService.#ctor(Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.CameraService},adas_core.Application.Repositories.Interfaces.ICameraRepository,adas_core.Application.Services.Interfaces.IPointOfCareService) - adas_core.Application.Services.CameraService.DeleteCamera(MongoDB.Bson.ObjectId) - adas_core.Application.Services.CameraService.GetById(MongoDB.Bson.ObjectId) - adas_core.Application.Services.CameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) - adas_core.Application.Services.CameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) - adas_core.Application.Services.CameraService.GetSearchByNameCameras(System.String) - adas_core.Application.Services.CameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) - adas_core.Application.Services.CameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) langs: - csharp - vb name: CameraService nameWithType: CameraService fullName: adas_core.Application.Services.CameraService type: Class source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: CameraService path: ../../adas-core.Application/Services/CameraService.cs startLine: 17 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Provides camera-related operations by coordinating the camera repository and point-of-care service, and logging diagnostic information. remarks: This service implements and serves as the application-layer entry point for camera functionality. example: [] syntax: content: 'public class CameraService : ICameraService' content.vb: Public Class CameraService Implements ICameraService inheritance: - System.Object implements: - adas_core.Application.Services.Interfaces.ICameraService 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.CameraService.#ctor(Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.CameraService},adas_core.Application.Repositories.Interfaces.ICameraRepository,adas_core.Application.Services.Interfaces.IPointOfCareService) commentId: M:adas_core.Application.Services.CameraService.#ctor(Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.CameraService},adas_core.Application.Repositories.Interfaces.ICameraRepository,adas_core.Application.Services.Interfaces.IPointOfCareService) id: '#ctor(Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.CameraService},adas_core.Application.Repositories.Interfaces.ICameraRepository,adas_core.Application.Services.Interfaces.IPointOfCareService)' parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: CameraService(ILogger, ICameraRepository, IPointOfCareService) nameWithType: CameraService.CameraService(ILogger, ICameraRepository, IPointOfCareService) fullName: adas_core.Application.Services.CameraService.CameraService(Microsoft.Extensions.Logging.ILogger, adas_core.Application.Repositories.Interfaces.ICameraRepository, adas_core.Application.Services.Interfaces.IPointOfCareService) type: Constructor source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: .ctor path: ../../adas-core.Application/Services/CameraService.cs startLine: 17 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Provides camera-related operations by coordinating the camera repository and point-of-care service, and logging diagnostic information. remarks: This service implements and serves as the application-layer entry point for camera functionality. example: [] syntax: content: public CameraService(ILogger logger, ICameraRepository cameraRepository, IPointOfCareService pointOfCareService) parameters: - id: logger type: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.CameraService} - id: cameraRepository type: adas_core.Application.Repositories.Interfaces.ICameraRepository - id: pointOfCareService type: adas_core.Application.Services.Interfaces.IPointOfCareService content.vb: Public Sub New(logger As ILogger(Of CameraService), cameraRepository As ICameraRepository, pointOfCareService As IPointOfCareService) overload: adas_core.Application.Services.CameraService.#ctor* nameWithType.vb: CameraService.New(ILogger(Of CameraService), ICameraRepository, IPointOfCareService) fullName.vb: adas_core.Application.Services.CameraService.New(Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.CameraService), adas_core.Application.Repositories.Interfaces.ICameraRepository, adas_core.Application.Services.Interfaces.IPointOfCareService) name.vb: New(ILogger(Of CameraService), ICameraRepository, IPointOfCareService) - uid: adas_core.Application.Services.CameraService.GetById(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.CameraService.GetById(MongoDB.Bson.ObjectId) id: GetById(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: GetById(ObjectId) nameWithType: CameraService.GetById(ObjectId) fullName: adas_core.Application.Services.CameraService.GetById(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetById path: ../../adas-core.Application/Services/CameraService.cs startLine: 26 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: >- Retrieves a camera by its associated relay identifier from the camera repository. Returns null when no camera is found for the specified relay identifier. example: [] syntax: content: public Task GetById(ObjectId relayId) parameters: - id: relayId type: MongoDB.Bson.ObjectId description: The unique identifier of the relay used to look up the camera. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Camera} description: A task that represents the asynchronous operation. The task result contains the matching , or null if no camera is found. content.vb: Public Function GetById(relayId As ObjectId) As Task(Of Camera) overload: adas_core.Application.Services.CameraService.GetById* implements: - adas_core.Application.Services.Interfaces.ICameraService.GetById(MongoDB.Bson.ObjectId) - uid: adas_core.Application.Services.CameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) commentId: M:adas_core.Application.Services.CameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) id: GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: GetCameraInList(List) nameWithType: CameraService.GetCameraInList(List) fullName: adas_core.Application.Services.CameraService.GetCameraInList(System.Collections.Generic.List) type: Method source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetCameraInList path: ../../adas-core.Application/Services/CameraService.cs startLine: 35 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Retrieves the list of cameras associated with the specified configuration relay identifiers. example: [] syntax: content: public List GetCameraInList(List configurationRelayList) parameters: - id: configurationRelayList type: System.Collections.Generic.List{MongoDB.Bson.ObjectId} description: The list of configuration relay identifiers used to look up the corresponding cameras. return: type: System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Camera} description: A containing the cameras linked to the provided configuration relay identifiers. content.vb: Public Function GetCameraInList(configurationRelayList As List(Of ObjectId)) As List(Of Camera) overload: adas_core.Application.Services.CameraService.GetCameraInList* implements: - adas_core.Application.Services.Interfaces.ICameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) nameWithType.vb: CameraService.GetCameraInList(List(Of ObjectId)) fullName.vb: adas_core.Application.Services.CameraService.GetCameraInList(System.Collections.Generic.List(Of MongoDB.Bson.ObjectId)) name.vb: GetCameraInList(List(Of ObjectId)) - uid: adas_core.Application.Services.CameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) commentId: M:adas_core.Application.Services.CameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) id: GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: GetPaginatedCameras(PaginationFilter) nameWithType: CameraService.GetPaginatedCameras(PaginationFilter) fullName: adas_core.Application.Services.CameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) type: Method source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetPaginatedCameras path: ../../adas-core.Application/Services/CameraService.cs startLine: 45 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Retrieves a paginated list of cameras, optionally filtered by whether they are currently in use, and resolves the in-use status for each returned camera using the point-of-care service. example: [] syntax: content: public Task> GetPaginatedCameras(PaginationFilter filter) parameters: - id: filter type: adas_core.Domain.Models.Filter.PaginationFilter description: The pagination filter that controls page number, page size, and optional filtering criteria such as the in-use flag. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.Camera}} description: A paginated response containing the requested cameras, the current page metadata, and the total document count; if no data is found, an empty paginated response is returned. content.vb: Public Function GetPaginatedCameras(filter As PaginationFilter) As Task(Of PaginationResponse(Of Camera)) overload: adas_core.Application.Services.CameraService.GetPaginatedCameras* implements: - adas_core.Application.Services.Interfaces.ICameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) - uid: adas_core.Application.Services.CameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) commentId: M:adas_core.Application.Services.CameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) id: InsertCamera(adas_core.Domain.Models.MongoModels.Camera) parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: InsertCamera(Camera) nameWithType: CameraService.InsertCamera(Camera) fullName: adas_core.Application.Services.CameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) type: Method source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: InsertCamera path: ../../adas-core.Application/Services/CameraService.cs startLine: 93 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: >- Inserts a new camera into the system after validating its name and ensuring no duplicate exists. Throws an exception if the camera name is null or if another camera with the same name already exists. example: [] syntax: content: public Task InsertCamera(Camera camera) parameters: - id: camera type: adas_core.Domain.Models.MongoModels.Camera description: The camera entity to insert. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Camera} description: The inserted camera, or null if the insertion did not return a result. content.vb: Public Function InsertCamera(camera As Camera) As Task(Of Camera) overload: adas_core.Application.Services.CameraService.InsertCamera* exceptions: - type: System.Exception commentId: T:System.Exception description: Thrown when the camera name is null. - type: System.Exception commentId: T:System.Exception description: Thrown when a camera with the same name already exists. implements: - adas_core.Application.Services.Interfaces.ICameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) - uid: adas_core.Application.Services.CameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) commentId: M:adas_core.Application.Services.CameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) id: UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: UpdateCameraById(ObjectId, Camera) nameWithType: CameraService.UpdateCameraById(ObjectId, Camera) fullName: adas_core.Application.Services.CameraService.UpdateCameraById(MongoDB.Bson.ObjectId, adas_core.Domain.Models.MongoModels.Camera) type: Method source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdateCameraById path: ../../adas-core.Application/Services/CameraService.cs startLine: 107 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Updates an existing camera identified by its unique identifier, returning the updated entity if the operation succeeds. example: [] syntax: content: public Task UpdateCameraById(ObjectId objectId, Camera camera) parameters: - id: objectId type: MongoDB.Bson.ObjectId description: The unique identifier of the camera to update. - id: camera type: adas_core.Domain.Models.MongoModels.Camera description: The camera data containing the updated values. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Camera} description: A task that represents the asynchronous operation. The task result contains the updated , or null if no camera with the specified identifier was found. content.vb: Public Function UpdateCameraById(objectId As ObjectId, camera As Camera) As Task(Of Camera) overload: adas_core.Application.Services.CameraService.UpdateCameraById* implements: - adas_core.Application.Services.Interfaces.ICameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) - uid: adas_core.Application.Services.CameraService.DeleteCamera(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.CameraService.DeleteCamera(MongoDB.Bson.ObjectId) id: DeleteCamera(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: DeleteCamera(ObjectId) nameWithType: CameraService.DeleteCamera(ObjectId) fullName: adas_core.Application.Services.CameraService.DeleteCamera(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteCamera path: ../../adas-core.Application/Services/CameraService.cs startLine: 117 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Deletes a camera identified by the specified object identifier. Returns false when the camera is not found, and logs and returns false if an error occurs during the operation. example: [] syntax: content: public Task DeleteCamera(ObjectId objectId) parameters: - id: objectId type: MongoDB.Bson.ObjectId description: The unique identifier of the camera to delete. return: type: System.Threading.Tasks.Task{System.Boolean} description: true if the camera was successfully deleted; otherwise, false. content.vb: Public Function DeleteCamera(objectId As ObjectId) As Task(Of Boolean) overload: adas_core.Application.Services.CameraService.DeleteCamera* implements: - adas_core.Application.Services.Interfaces.ICameraService.DeleteCamera(MongoDB.Bson.ObjectId) - uid: adas_core.Application.Services.CameraService.GetSearchByNameCameras(System.String) commentId: M:adas_core.Application.Services.CameraService.GetSearchByNameCameras(System.String) id: GetSearchByNameCameras(System.String) parent: adas_core.Application.Services.CameraService langs: - csharp - vb name: GetSearchByNameCameras(string) nameWithType: CameraService.GetSearchByNameCameras(string) fullName: adas_core.Application.Services.CameraService.GetSearchByNameCameras(string) type: Method source: remote: path: adas-core.Application/Services/CameraService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetSearchByNameCameras path: ../../adas-core.Application/Services/CameraService.cs startLine: 140 assemblies: - adas-core.Application namespace: adas_core.Application.Services summary: Retrieves a list of cameras matching the specified search text by delegating to the camera repository. example: [] syntax: content: public Task> GetSearchByNameCameras(string textToSearch) parameters: - id: textToSearch type: System.String description: The search text used to find cameras by name. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Camera}} description: A task that represents the asynchronous operation, containing a list of objects that match the search criteria. content.vb: Public Function GetSearchByNameCameras(textToSearch As String) As Task(Of List(Of Camera)) overload: adas_core.Application.Services.CameraService.GetSearchByNameCameras* implements: - adas_core.Application.Services.Interfaces.ICameraService.GetSearchByNameCameras(System.String) nameWithType.vb: CameraService.GetSearchByNameCameras(String) fullName.vb: adas_core.Application.Services.CameraService.GetSearchByNameCameras(String) name.vb: GetSearchByNameCameras(String) references: - uid: adas_core.Application.Services.Interfaces.ICameraService commentId: T:adas_core.Application.Services.Interfaces.ICameraService parent: adas_core.Application.Services.Interfaces href: adas_core.Application.Services.Interfaces.ICameraService.html name: ICameraService nameWithType: ICameraService fullName: adas_core.Application.Services.Interfaces.ICameraService - 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: 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: 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 commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - 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.CameraService.#ctor* commentId: Overload:adas_core.Application.Services.CameraService.#ctor href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService__ctor_Microsoft_Extensions_Logging_ILogger_adas_core_Application_Services_CameraService__adas_core_Application_Repositories_Interfaces_ICameraRepository_adas_core_Application_Services_Interfaces_IPointOfCareService_ name: CameraService nameWithType: CameraService.CameraService fullName: adas_core.Application.Services.CameraService.CameraService nameWithType.vb: CameraService.New fullName.vb: adas_core.Application.Services.CameraService.New name.vb: New - uid: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.CameraService} commentId: T:Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.CameraService} parent: Microsoft.Extensions.Logging definition: Microsoft.Extensions.Logging.ILogger`1 href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1 name: ILogger nameWithType: ILogger fullName: Microsoft.Extensions.Logging.ILogger nameWithType.vb: ILogger(Of CameraService) fullName.vb: Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.CameraService) name.vb: ILogger(Of CameraService) 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.CameraService name: CameraService href: adas_core.Application.Services.CameraService.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.CameraService name: CameraService href: adas_core.Application.Services.CameraService.html - name: ) - uid: adas_core.Application.Repositories.Interfaces.ICameraRepository commentId: T:adas_core.Application.Repositories.Interfaces.ICameraRepository parent: adas_core.Application.Repositories.Interfaces href: adas_core.Application.Repositories.Interfaces.ICameraRepository.html name: ICameraRepository nameWithType: ICameraRepository fullName: adas_core.Application.Repositories.Interfaces.ICameraRepository - uid: adas_core.Application.Services.Interfaces.IPointOfCareService commentId: T:adas_core.Application.Services.Interfaces.IPointOfCareService parent: adas_core.Application.Services.Interfaces href: adas_core.Application.Services.Interfaces.IPointOfCareService.html name: IPointOfCareService nameWithType: IPointOfCareService fullName: adas_core.Application.Services.Interfaces.IPointOfCareService - 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 nameWithType: ILogger fullName: Microsoft.Extensions.Logging.ILogger 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.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: adas_core.Domain.Models.MongoModels.Camera commentId: T:adas_core.Domain.Models.MongoModels.Camera parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.Camera.html name: Camera nameWithType: Camera fullName: adas_core.Domain.Models.MongoModels.Camera - uid: adas_core.Application.Services.CameraService.GetById* commentId: Overload:adas_core.Application.Services.CameraService.GetById href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService_GetById_MongoDB_Bson_ObjectId_ name: GetById nameWithType: CameraService.GetById fullName: adas_core.Application.Services.CameraService.GetById - uid: adas_core.Application.Services.Interfaces.ICameraService.GetById(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.ICameraService.GetById(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.ICameraService isExternal: true href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetById_MongoDB_Bson_ObjectId_ name: GetById(ObjectId) nameWithType: ICameraService.GetById(ObjectId) fullName: adas_core.Application.Services.Interfaces.ICameraService.GetById(MongoDB.Bson.ObjectId) spec.csharp: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetById(MongoDB.Bson.ObjectId) name: GetById href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetById_MongoDB_Bson_ObjectId_ - name: ( - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetById(MongoDB.Bson.ObjectId) name: GetById href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetById_MongoDB_Bson_ObjectId_ - name: ( - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ) - 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{adas_core.Domain.Models.MongoModels.Camera} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Camera} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task nameWithType: Task fullName: System.Threading.Tasks.Task nameWithType.vb: Task(Of Camera) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.Camera) name.vb: Task(Of Camera) 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.Camera name: Camera - 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.Camera name: Camera - 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: 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: 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 nameWithType: Task fullName: System.Threading.Tasks.Task 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: System.Collections.Generic.List`1 commentId: T:System.Collections.Generic.List`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of T) fullName.vb: System.Collections.Generic.List(Of T) name.vb: List(Of T) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: adas_core.Application.Services.CameraService.GetCameraInList* commentId: Overload:adas_core.Application.Services.CameraService.GetCameraInList href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService_GetCameraInList_System_Collections_Generic_List_MongoDB_Bson_ObjectId__ name: GetCameraInList nameWithType: CameraService.GetCameraInList fullName: adas_core.Application.Services.CameraService.GetCameraInList - uid: adas_core.Application.Services.Interfaces.ICameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) commentId: M:adas_core.Application.Services.Interfaces.ICameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) parent: adas_core.Application.Services.Interfaces.ICameraService isExternal: true href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetCameraInList_System_Collections_Generic_List_MongoDB_Bson_ObjectId__ name: GetCameraInList(List) nameWithType: ICameraService.GetCameraInList(List) fullName: adas_core.Application.Services.Interfaces.ICameraService.GetCameraInList(System.Collections.Generic.List) nameWithType.vb: ICameraService.GetCameraInList(List(Of ObjectId)) fullName.vb: adas_core.Application.Services.Interfaces.ICameraService.GetCameraInList(System.Collections.Generic.List(Of MongoDB.Bson.ObjectId)) name.vb: GetCameraInList(List(Of ObjectId)) spec.csharp: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) name: GetCameraInList href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetCameraInList_System_Collections_Generic_List_MongoDB_Bson_ObjectId__ - 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: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: '>' - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetCameraInList(System.Collections.Generic.List{MongoDB.Bson.ObjectId}) name: GetCameraInList href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetCameraInList_System_Collections_Generic_List_MongoDB_Bson_ObjectId__ - 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: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ) - name: ) - uid: System.Collections.Generic.List{MongoDB.Bson.ObjectId} commentId: T:System.Collections.Generic.List{MongoDB.Bson.ObjectId} parent: System.Collections.Generic definition: System.Collections.Generic.List`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of ObjectId) fullName.vb: System.Collections.Generic.List(Of MongoDB.Bson.ObjectId) name.vb: List(Of ObjectId) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ) - uid: System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Camera} commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Camera} parent: System.Collections.Generic definition: System.Collections.Generic.List`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of Camera) fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Camera) name.vb: List(Of Camera) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera href: adas_core.Domain.Models.MongoModels.Camera.html - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera href: adas_core.Domain.Models.MongoModels.Camera.html - name: ) - uid: System.Collections.Generic commentId: N:System.Collections.Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections.Generic nameWithType: System.Collections.Generic fullName: System.Collections.Generic spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic - uid: adas_core.Application.Services.CameraService.GetPaginatedCameras* commentId: Overload:adas_core.Application.Services.CameraService.GetPaginatedCameras href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService_GetPaginatedCameras_adas_core_Domain_Models_Filter_PaginationFilter_ name: GetPaginatedCameras nameWithType: CameraService.GetPaginatedCameras fullName: adas_core.Application.Services.CameraService.GetPaginatedCameras - uid: adas_core.Application.Services.Interfaces.ICameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) commentId: M:adas_core.Application.Services.Interfaces.ICameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) parent: adas_core.Application.Services.Interfaces.ICameraService href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetPaginatedCameras_adas_core_Domain_Models_Filter_PaginationFilter_ name: GetPaginatedCameras(PaginationFilter) nameWithType: ICameraService.GetPaginatedCameras(PaginationFilter) fullName: adas_core.Application.Services.Interfaces.ICameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) spec.csharp: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) name: GetPaginatedCameras href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetPaginatedCameras_adas_core_Domain_Models_Filter_PaginationFilter_ - name: ( - uid: adas_core.Domain.Models.Filter.PaginationFilter name: PaginationFilter - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetPaginatedCameras(adas_core.Domain.Models.Filter.PaginationFilter) name: GetPaginatedCameras href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetPaginatedCameras_adas_core_Domain_Models_Filter_PaginationFilter_ - name: ( - uid: adas_core.Domain.Models.Filter.PaginationFilter name: PaginationFilter - name: ) - uid: adas_core.Domain.Models.Filter.PaginationFilter commentId: T:adas_core.Domain.Models.Filter.PaginationFilter parent: adas_core.Domain.Models.Filter href: adas_core.Domain.Models.Filter.PaginationFilter.html name: PaginationFilter nameWithType: PaginationFilter fullName: adas_core.Domain.Models.Filter.PaginationFilter - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.Camera}} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.Camera}} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task> nameWithType: Task> fullName: System.Threading.Tasks.Task> nameWithType.vb: Task(Of PaginationResponse(Of Camera)) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.PaginationResponse(Of adas_core.Domain.Models.MongoModels.Camera)) name.vb: Task(Of PaginationResponse(Of Camera)) spec.csharp: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: < - uid: adas_core.Domain.Models.Responses.PaginationResponse`1 name: PaginationResponse - name: < - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera - name: '>' - name: '>' spec.vb: - uid: System.Threading.Tasks.Task`1 name: Task isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.Responses.PaginationResponse`1 name: PaginationResponse - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera - name: ) - name: ) - uid: adas_core.Domain.Models.Filter commentId: N:adas_core.Domain.Models.Filter href: adas_core.html name: adas_core.Domain.Models.Filter nameWithType: adas_core.Domain.Models.Filter fullName: adas_core.Domain.Models.Filter spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.Filter name: Filter href: adas_core.Domain.Models.Filter.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.Filter name: Filter href: adas_core.Domain.Models.Filter.html - uid: System.Exception commentId: T:System.Exception parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.exception name: Exception nameWithType: Exception fullName: System.Exception - uid: adas_core.Application.Services.CameraService.InsertCamera* commentId: Overload:adas_core.Application.Services.CameraService.InsertCamera href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService_InsertCamera_adas_core_Domain_Models_MongoModels_Camera_ name: InsertCamera nameWithType: CameraService.InsertCamera fullName: adas_core.Application.Services.CameraService.InsertCamera - uid: adas_core.Application.Services.Interfaces.ICameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) commentId: M:adas_core.Application.Services.Interfaces.ICameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) parent: adas_core.Application.Services.Interfaces.ICameraService href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_InsertCamera_adas_core_Domain_Models_MongoModels_Camera_ name: InsertCamera(Camera) nameWithType: ICameraService.InsertCamera(Camera) fullName: adas_core.Application.Services.Interfaces.ICameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) spec.csharp: - uid: adas_core.Application.Services.Interfaces.ICameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) name: InsertCamera href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_InsertCamera_adas_core_Domain_Models_MongoModels_Camera_ - name: ( - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.ICameraService.InsertCamera(adas_core.Domain.Models.MongoModels.Camera) name: InsertCamera href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_InsertCamera_adas_core_Domain_Models_MongoModels_Camera_ - name: ( - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera - name: ) - uid: adas_core.Application.Services.CameraService.UpdateCameraById* commentId: Overload:adas_core.Application.Services.CameraService.UpdateCameraById href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService_UpdateCameraById_MongoDB_Bson_ObjectId_adas_core_Domain_Models_MongoModels_Camera_ name: UpdateCameraById nameWithType: CameraService.UpdateCameraById fullName: adas_core.Application.Services.CameraService.UpdateCameraById - uid: adas_core.Application.Services.Interfaces.ICameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) commentId: M:adas_core.Application.Services.Interfaces.ICameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) parent: adas_core.Application.Services.Interfaces.ICameraService isExternal: true href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_UpdateCameraById_MongoDB_Bson_ObjectId_adas_core_Domain_Models_MongoModels_Camera_ name: UpdateCameraById(ObjectId, Camera) nameWithType: ICameraService.UpdateCameraById(ObjectId, Camera) fullName: adas_core.Application.Services.Interfaces.ICameraService.UpdateCameraById(MongoDB.Bson.ObjectId, adas_core.Domain.Models.MongoModels.Camera) spec.csharp: - uid: adas_core.Application.Services.Interfaces.ICameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) name: UpdateCameraById href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_UpdateCameraById_MongoDB_Bson_ObjectId_adas_core_Domain_Models_MongoModels_Camera_ - name: ( - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ',' - name: " " - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.ICameraService.UpdateCameraById(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.Camera) name: UpdateCameraById href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_UpdateCameraById_MongoDB_Bson_ObjectId_adas_core_Domain_Models_MongoModels_Camera_ - name: ( - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ',' - name: " " - uid: adas_core.Domain.Models.MongoModels.Camera name: Camera - name: ) - uid: adas_core.Application.Services.CameraService.DeleteCamera* commentId: Overload:adas_core.Application.Services.CameraService.DeleteCamera href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService_DeleteCamera_MongoDB_Bson_ObjectId_ name: DeleteCamera nameWithType: CameraService.DeleteCamera fullName: adas_core.Application.Services.CameraService.DeleteCamera - uid: adas_core.Application.Services.Interfaces.ICameraService.DeleteCamera(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.ICameraService.DeleteCamera(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.ICameraService isExternal: true href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_DeleteCamera_MongoDB_Bson_ObjectId_ name: DeleteCamera(ObjectId) nameWithType: ICameraService.DeleteCamera(ObjectId) fullName: adas_core.Application.Services.Interfaces.ICameraService.DeleteCamera(MongoDB.Bson.ObjectId) spec.csharp: - uid: adas_core.Application.Services.Interfaces.ICameraService.DeleteCamera(MongoDB.Bson.ObjectId) name: DeleteCamera href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_DeleteCamera_MongoDB_Bson_ObjectId_ - name: ( - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.ICameraService.DeleteCamera(MongoDB.Bson.ObjectId) name: DeleteCamera href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_DeleteCamera_MongoDB_Bson_ObjectId_ - name: ( - uid: MongoDB.Bson.ObjectId name: ObjectId isExternal: true - name: ) - 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 nameWithType: Task fullName: System.Threading.Tasks.Task 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.CameraService.GetSearchByNameCameras* commentId: Overload:adas_core.Application.Services.CameraService.GetSearchByNameCameras href: adas_core.Application.Services.CameraService.html#adas_core_Application_Services_CameraService_GetSearchByNameCameras_System_String_ name: GetSearchByNameCameras nameWithType: CameraService.GetSearchByNameCameras fullName: adas_core.Application.Services.CameraService.GetSearchByNameCameras - uid: adas_core.Application.Services.Interfaces.ICameraService.GetSearchByNameCameras(System.String) commentId: M:adas_core.Application.Services.Interfaces.ICameraService.GetSearchByNameCameras(System.String) parent: adas_core.Application.Services.Interfaces.ICameraService isExternal: true href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetSearchByNameCameras_System_String_ name: GetSearchByNameCameras(string) nameWithType: ICameraService.GetSearchByNameCameras(string) fullName: adas_core.Application.Services.Interfaces.ICameraService.GetSearchByNameCameras(string) nameWithType.vb: ICameraService.GetSearchByNameCameras(String) fullName.vb: adas_core.Application.Services.Interfaces.ICameraService.GetSearchByNameCameras(String) name.vb: GetSearchByNameCameras(String) spec.csharp: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetSearchByNameCameras(System.String) name: GetSearchByNameCameras href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetSearchByNameCameras_System_String_ - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - uid: adas_core.Application.Services.Interfaces.ICameraService.GetSearchByNameCameras(System.String) name: GetSearchByNameCameras href: adas_core.Application.Services.Interfaces.ICameraService.html#adas_core_Application_Services_Interfaces_ICameraService_GetSearchByNameCameras_System_String_ - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - 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.Camera}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Camera}} parent: System.Threading.Tasks definition: System.Threading.Tasks.Task`1 href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task> nameWithType: Task> fullName: System.Threading.Tasks.Task> nameWithType.vb: Task(Of List(Of Camera)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Camera)) name.vb: Task(Of List(Of Camera)) 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.Camera name: Camera - 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.Camera name: Camera - name: ) - name: )