### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.Interfaces.ILightBeaconService commentId: T:adas_core.Application.Services.Interfaces.ILightBeaconService id: ILightBeaconService parent: adas_core.Application.Services.Interfaces children: - adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert(adas_core.Domain.Models.PatientObservation) - adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(adas_core.Domain.Models.MongoModels.PointOfCare) - adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons(adas_core.Domain.Models.Filter.PaginationFilter) - adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName(System.String) - adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne(adas_core.Domain.Models.MongoModels.LightBeacon) - adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(adas_core.Domain.Models.MongoModels.PointOfCare) - adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) - adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) - adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) - adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) - adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne(adas_core.Domain.Models.MongoModels.LightBeacon) langs: - csharp - vb name: ILightBeaconService nameWithType: ILightBeaconService fullName: adas_core.Application.Services.Interfaces.ILightBeaconService type: Interface source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ILightBeaconService path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 9 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces syntax: content: public interface ILightBeaconService content.vb: Public Interface ILightBeaconService derivedClasses: - adas_core.module.LightBeacons.Services.LightBeaconService 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.ILightBeaconService.SendColor(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) id: SendColor(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: SendColor(ObjectId, LightBeaconColor) nameWithType: ILightBeaconService.SendColor(ObjectId, LightBeaconColor) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor(MongoDB.Bson.ObjectId, adas_core.Domain.Enums.LightBeaconColor) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: SendColor path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 16 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Sends the specified color command to the light beacon associated with the given point of control identifier. example: [] syntax: content: Task SendColor(ObjectId pocId, LightBeaconColor color) parameters: - id: pocId type: MongoDB.Bson.ObjectId description: The identifier of the point of control that targets the light beacon. - id: color type: adas_core.Domain.Enums.LightBeaconColor description: The color to apply to the light beacon. return: type: System.Threading.Tasks.Task content.vb: Function SendColor(pocId As ObjectId, color As LightBeaconColor) As Task overload: adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) id: SendColor(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: SendColor(PointOfCare, LightBeaconColor) nameWithType: ILightBeaconService.SendColor(PointOfCare, LightBeaconColor) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor(adas_core.Domain.Models.MongoModels.PointOfCare, adas_core.Domain.Enums.LightBeaconColor) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: SendColor path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 24 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Sends a color command to the light beacon of the specified point of care device, updating its visual indicator to reflect the requested state. example: [] syntax: content: Task SendColor(PointOfCare pocId, LightBeaconColor color) parameters: - id: pocId type: adas_core.Domain.Models.MongoModels.PointOfCare description: The identifier of the point of care device whose light beacon will be updated. - id: color type: adas_core.Domain.Enums.LightBeaconColor description: The color to apply to the light beacon. return: type: System.Threading.Tasks.Task description: A task that represents the asynchronous color send operation. content.vb: Function SendColor(pocId As PointOfCare, color As LightBeaconColor) As Task overload: adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) id: SendBeaconBroadcast(adas_core.Domain.Models.MongoModels.PointOfCare,adas_core.Domain.Enums.LightBeaconColor) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: SendBeaconBroadcast(PointOfCare, LightBeaconColor) nameWithType: ILightBeaconService.SendBeaconBroadcast(PointOfCare, LightBeaconColor) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(adas_core.Domain.Models.MongoModels.PointOfCare, adas_core.Domain.Enums.LightBeaconColor) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: SendBeaconBroadcast path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 30 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Sends a light beacon broadcast for the specified point of care, setting the beacon to display the specified color. example: [] syntax: content: Task SendBeaconBroadcast(PointOfCare poc, LightBeaconColor color) parameters: - id: poc type: adas_core.Domain.Models.MongoModels.PointOfCare description: The point of care device or location whose beacon will be updated. - id: color type: adas_core.Domain.Enums.LightBeaconColor description: The color to display on the light beacon. return: type: System.Threading.Tasks.Task content.vb: Function SendBeaconBroadcast(poc As PointOfCare, color As LightBeaconColor) As Task overload: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) id: SendBeaconBroadcast(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.LightBeaconColor) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: SendBeaconBroadcast(ObjectId, LightBeaconColor) nameWithType: ILightBeaconService.SendBeaconBroadcast(ObjectId, LightBeaconColor) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast(MongoDB.Bson.ObjectId, adas_core.Domain.Enums.LightBeaconColor) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: SendBeaconBroadcast path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 36 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Sends a broadcast signal to the beacon associated with the specified point of care identifier using the given beacon color. example: [] syntax: content: Task SendBeaconBroadcast(ObjectId poc, LightBeaconColor color) parameters: - id: poc type: MongoDB.Bson.ObjectId description: The identifier of the point of care (or beacon) that will receive the broadcast. - id: color type: adas_core.Domain.Enums.LightBeaconColor description: The color of the light beacon used for the broadcast. return: type: System.Threading.Tasks.Task content.vb: Function SendBeaconBroadcast(poc As ObjectId, color As LightBeaconColor) As Task overload: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(MongoDB.Bson.ObjectId) id: PowerOffLed(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: PowerOffLed(ObjectId) nameWithType: ILightBeaconService.PowerOffLed(ObjectId) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: PowerOffLed path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 41 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously powers off the LED associated with the specified point of connection identifier. example: [] syntax: content: Task PowerOffLed(ObjectId pocId) parameters: - id: pocId type: MongoDB.Bson.ObjectId description: The identifier of the point of connection whose LED will be turned off. return: type: System.Threading.Tasks.Task content.vb: Function PowerOffLed(pocId As ObjectId) As Task overload: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(adas_core.Domain.Models.MongoModels.PointOfCare) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(adas_core.Domain.Models.MongoModels.PointOfCare) id: PowerOffLed(adas_core.Domain.Models.MongoModels.PointOfCare) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: PowerOffLed(PointOfCare) nameWithType: ILightBeaconService.PowerOffLed(PointOfCare) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed(adas_core.Domain.Models.MongoModels.PointOfCare) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: PowerOffLed path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 46 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously powers off the LED indicator associated with the specified point of care. example: [] syntax: content: Task PowerOffLed(PointOfCare poc) parameters: - id: poc type: adas_core.Domain.Models.MongoModels.PointOfCare description: The point of care whose LED indicator should be turned off. return: type: System.Threading.Tasks.Task content.vb: Function PowerOffLed(poc As PointOfCare) As Task overload: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert(adas_core.Domain.Models.PatientObservation) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert(adas_core.Domain.Models.PatientObservation) id: GenerateColorAlert(adas_core.Domain.Models.PatientObservation) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: GenerateColorAlert(PatientObservation) nameWithType: ILightBeaconService.GenerateColorAlert(PatientObservation) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert(adas_core.Domain.Models.PatientObservation) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GenerateColorAlert path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 52 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Generates a color-coded alert based on the provided patient observation. example: [] syntax: content: void GenerateColorAlert(PatientObservation obs) parameters: - id: obs type: adas_core.Domain.Models.PatientObservation description: The patient observation used to determine the alert level and color. content.vb: Sub GenerateColorAlert(obs As PatientObservation) overload: adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(MongoDB.Bson.ObjectId) id: GetColor(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: GetColor(ObjectId) nameWithType: ILightBeaconService.GetColor(ObjectId) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetColor path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 60 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves the associated with the specified point of care identifier. example: [] syntax: content: Task GetColor(ObjectId pocId) parameters: - id: pocId type: MongoDB.Bson.ObjectId description: The identifier of the point of care whose light beacon color is being requested. return: type: System.Threading.Tasks.Task{adas_core.Domain.Enums.LightBeaconColor} description: A task that represents the asynchronous operation, containing the for the specified point of care. content.vb: Function GetColor(pocId As ObjectId) As Task(Of LightBeaconColor) overload: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(adas_core.Domain.Models.MongoModels.PointOfCare) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(adas_core.Domain.Models.MongoModels.PointOfCare) id: GetColor(adas_core.Domain.Models.MongoModels.PointOfCare) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: GetColor(PointOfCare) nameWithType: ILightBeaconService.GetColor(PointOfCare) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor(adas_core.Domain.Models.MongoModels.PointOfCare) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetColor path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 66 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves the light beacon color associated with the specified point of care. example: [] syntax: content: Task GetColor(PointOfCare poc) parameters: - id: poc type: adas_core.Domain.Models.MongoModels.PointOfCare description: The point of care for which to look up the light beacon color. return: type: System.Threading.Tasks.Task{adas_core.Domain.Enums.LightBeaconColor} description: A task that represents the asynchronous operation. The task result contains the for the specified point of care. content.vb: Function GetColor(poc As PointOfCare) As Task(Of LightBeaconColor) overload: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne(adas_core.Domain.Models.MongoModels.LightBeacon) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne(adas_core.Domain.Models.MongoModels.LightBeacon) id: UpdateOne(adas_core.Domain.Models.MongoModels.LightBeacon) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: UpdateOne(LightBeacon) nameWithType: ILightBeaconService.UpdateOne(LightBeacon) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne(adas_core.Domain.Models.MongoModels.LightBeacon) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdateOne path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 73 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Updates a single light beacon record in the data store. Returns null when the beacon to update cannot be found. example: [] syntax: content: Task UpdateOne(LightBeacon beacon) parameters: - id: beacon type: adas_core.Domain.Models.MongoModels.LightBeacon description: The light beacon containing the updated values to persist. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.LightBeacon} description: A task that represents the asynchronous operation, containing the updated , or null if no matching beacon was found. content.vb: Function UpdateOne(beacon As LightBeacon) As Task(Of LightBeacon) overload: adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne(adas_core.Domain.Models.MongoModels.LightBeacon) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne(adas_core.Domain.Models.MongoModels.LightBeacon) id: InsertOne(adas_core.Domain.Models.MongoModels.LightBeacon) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: InsertOne(LightBeacon) nameWithType: ILightBeaconService.InsertOne(LightBeacon) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne(adas_core.Domain.Models.MongoModels.LightBeacon) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: InsertOne path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 79 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Inserts a single light beacon into the data store. example: [] syntax: content: Task InsertOne(LightBeacon beacon) parameters: - id: beacon type: adas_core.Domain.Models.MongoModels.LightBeacon description: The light beacon entity to insert. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.LightBeacon} description: A task that resolves to the inserted , or null when no result is produced. content.vb: Function InsertOne(beacon As LightBeacon) As Task(Of LightBeacon) overload: adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons(adas_core.Domain.Models.Filter.PaginationFilter) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons(adas_core.Domain.Models.Filter.PaginationFilter) id: GetPaginatedBeacons(adas_core.Domain.Models.Filter.PaginationFilter) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: GetPaginatedBeacons(PaginationFilter) nameWithType: ILightBeaconService.GetPaginatedBeacons(PaginationFilter) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons(adas_core.Domain.Models.Filter.PaginationFilter) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetPaginatedBeacons path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 85 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves a paginated collection of light beacons based on the specified pagination filter. example: [] syntax: content: Task> GetPaginatedBeacons(PaginationFilter request) parameters: - id: request type: adas_core.Domain.Models.Filter.PaginationFilter description: The pagination filter containing the criteria used to page the beacon results. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.LightBeacon}} description: A task that represents the asynchronous operation, containing a pagination response with the requested light beacons. content.vb: Function GetPaginatedBeacons(request As PaginationFilter) As Task(Of PaginationResponse(Of LightBeacon)) overload: adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons* - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName(System.String) commentId: M:adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName(System.String) id: GetSearchByName(System.String) parent: adas_core.Application.Services.Interfaces.ILightBeaconService langs: - csharp - vb name: GetSearchByName(string) nameWithType: ILightBeaconService.GetSearchByName(string) fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName(string) type: Method source: remote: path: adas-core.Application/Services/Interfaces/ILightBeaconService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetSearchByName path: ../../adas-core.Application/Services/Interfaces/ILightBeaconService.cs startLine: 91 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously searches for light beacons by name using the specified search text. example: [] syntax: content: Task> GetSearchByName(string textToSearch) parameters: - id: textToSearch type: System.String description: The text used to search for matching light beacons by name. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.LightBeacon}} description: A task that represents the asynchronous operation. The task result contains a list of objects matching the search criteria. content.vb: Function GetSearchByName(textToSearch As String) As Task(Of List(Of LightBeacon)) overload: adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName* nameWithType.vb: ILightBeaconService.GetSearchByName(String) fullName.vb: adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName(String) name.vb: GetSearchByName(String) references: - uid: adas_core.Application.Services.Interfaces commentId: N:adas_core.Application.Services.Interfaces href: adas_core.html name: adas_core.Application.Services.Interfaces nameWithType: adas_core.Application.Services.Interfaces fullName: adas_core.Application.Services.Interfaces spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Application name: Application href: adas_core.Application.html - name: . - uid: adas_core.Application.Services name: Services href: adas_core.Application.Services.html - name: . - uid: adas_core.Application.Services.Interfaces name: Interfaces href: adas_core.Application.Services.Interfaces.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Application name: Application href: adas_core.Application.html - name: . - uid: adas_core.Application.Services name: Services href: adas_core.Application.Services.html - name: . - uid: adas_core.Application.Services.Interfaces name: Interfaces href: adas_core.Application.Services.Interfaces.html - uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) parent: adas_core.Domain.Utils.ObjectUtils definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils commentId: T:adas_core.Domain.Utils.NumberUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.NumberUtils.html name: NumberUtils nameWithType: NumberUtils fullName: adas_core.Domain.Utils.NumberUtils - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) isExternal: true href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils commentId: T:adas_core.Domain.Utils.ObjectUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.ObjectUtils.html name: ObjectUtils nameWithType: ObjectUtils fullName: adas_core.Domain.Utils.ObjectUtils - uid: adas_core.Domain.Utils commentId: N:adas_core.Domain.Utils href: adas_core.html name: adas_core.Domain.Utils nameWithType: adas_core.Domain.Utils fullName: adas_core.Domain.Utils spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_SendColor_MongoDB_Bson_ObjectId_adas_core_Domain_Enums_LightBeaconColor_ name: SendColor nameWithType: ILightBeaconService.SendColor fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.SendColor - uid: MongoDB.Bson.ObjectId commentId: T:MongoDB.Bson.ObjectId parent: MongoDB.Bson isExternal: true name: ObjectId nameWithType: ObjectId fullName: MongoDB.Bson.ObjectId - uid: adas_core.Domain.Enums.LightBeaconColor commentId: T:adas_core.Domain.Enums.LightBeaconColor parent: adas_core.Domain.Enums href: adas_core.Domain.Enums.LightBeaconColor.html name: LightBeaconColor nameWithType: LightBeaconColor fullName: adas_core.Domain.Enums.LightBeaconColor - uid: System.Threading.Tasks.Task commentId: T:System.Threading.Tasks.Task parent: System.Threading.Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task name: Task nameWithType: Task fullName: System.Threading.Tasks.Task - 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.Domain.Enums commentId: N:adas_core.Domain.Enums href: adas_core.html name: adas_core.Domain.Enums nameWithType: adas_core.Domain.Enums fullName: adas_core.Domain.Enums spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Enums name: Enums href: adas_core.Domain.Enums.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Enums name: Enums href: adas_core.Domain.Enums.html - uid: System.Threading.Tasks commentId: N:System.Threading.Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Threading.Tasks nameWithType: System.Threading.Tasks fullName: System.Threading.Tasks spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Threading name: Threading isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading - name: . - uid: System.Threading.Tasks name: Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Threading name: Threading isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading - name: . - uid: System.Threading.Tasks name: Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks - uid: adas_core.Domain.Models.MongoModels.PointOfCare commentId: T:adas_core.Domain.Models.MongoModels.PointOfCare parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.PointOfCare.html name: PointOfCare nameWithType: PointOfCare fullName: adas_core.Domain.Models.MongoModels.PointOfCare - uid: adas_core.Domain.Models.MongoModels commentId: N:adas_core.Domain.Models.MongoModels href: adas_core.html name: adas_core.Domain.Models.MongoModels nameWithType: adas_core.Domain.Models.MongoModels fullName: adas_core.Domain.Models.MongoModels spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_SendBeaconBroadcast_adas_core_Domain_Models_MongoModels_PointOfCare_adas_core_Domain_Enums_LightBeaconColor_ name: SendBeaconBroadcast nameWithType: ILightBeaconService.SendBeaconBroadcast fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.SendBeaconBroadcast - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_PowerOffLed_MongoDB_Bson_ObjectId_ name: PowerOffLed nameWithType: ILightBeaconService.PowerOffLed fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.PowerOffLed - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_GenerateColorAlert_adas_core_Domain_Models_PatientObservation_ name: GenerateColorAlert nameWithType: ILightBeaconService.GenerateColorAlert fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GenerateColorAlert - uid: adas_core.Domain.Models.PatientObservation commentId: T:adas_core.Domain.Models.PatientObservation parent: adas_core.Domain.Models href: adas_core.Domain.Models.PatientObservation.html name: PatientObservation nameWithType: PatientObservation fullName: adas_core.Domain.Models.PatientObservation - uid: adas_core.Domain.Models commentId: N:adas_core.Domain.Models href: adas_core.html name: adas_core.Domain.Models nameWithType: adas_core.Domain.Models fullName: adas_core.Domain.Models 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 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 - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_GetColor_MongoDB_Bson_ObjectId_ name: GetColor nameWithType: ILightBeaconService.GetColor fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GetColor - uid: System.Threading.Tasks.Task{adas_core.Domain.Enums.LightBeaconColor} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Enums.LightBeaconColor} 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 LightBeaconColor) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Enums.LightBeaconColor) name.vb: Task(Of LightBeaconColor) 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.Enums.LightBeaconColor name: LightBeaconColor - 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.Enums.LightBeaconColor name: LightBeaconColor - name: ) - uid: System.Threading.Tasks.Task`1 commentId: T:System.Threading.Tasks.Task`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1 name: Task 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: adas_core.Domain.Models.MongoModels.LightBeacon commentId: T:adas_core.Domain.Models.MongoModels.LightBeacon parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.LightBeacon.html name: LightBeacon nameWithType: LightBeacon fullName: adas_core.Domain.Models.MongoModels.LightBeacon - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_UpdateOne_adas_core_Domain_Models_MongoModels_LightBeacon_ name: UpdateOne nameWithType: ILightBeaconService.UpdateOne fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.UpdateOne - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.LightBeacon} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.LightBeacon} 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 LightBeacon) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.LightBeacon) name.vb: Task(Of LightBeacon) 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.LightBeacon name: LightBeacon - 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.LightBeacon name: LightBeacon - name: ) - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_InsertOne_adas_core_Domain_Models_MongoModels_LightBeacon_ name: InsertOne nameWithType: ILightBeaconService.InsertOne fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.InsertOne - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_GetPaginatedBeacons_adas_core_Domain_Models_Filter_PaginationFilter_ name: GetPaginatedBeacons nameWithType: ILightBeaconService.GetPaginatedBeacons fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GetPaginatedBeacons - 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.LightBeacon}} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.LightBeacon}} 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 LightBeacon)) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.PaginationResponse(Of adas_core.Domain.Models.MongoModels.LightBeacon)) name.vb: Task(Of PaginationResponse(Of LightBeacon)) 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.LightBeacon name: LightBeacon - 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.LightBeacon name: LightBeacon - name: ) - name: ) - uid: adas_core.Domain.Models.Filter commentId: N:adas_core.Domain.Models.Filter href: adas_core.html name: adas_core.Domain.Models.Filter nameWithType: adas_core.Domain.Models.Filter fullName: adas_core.Domain.Models.Filter spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.Filter name: Filter href: adas_core.Domain.Models.Filter.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.Filter name: Filter href: adas_core.Domain.Models.Filter.html - uid: adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName* commentId: Overload:adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName href: adas_core.Application.Services.Interfaces.ILightBeaconService.html#adas_core_Application_Services_Interfaces_ILightBeaconService_GetSearchByName_System_String_ name: GetSearchByName nameWithType: ILightBeaconService.GetSearchByName fullName: adas_core.Application.Services.Interfaces.ILightBeaconService.GetSearchByName - 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.LightBeacon}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.LightBeacon}} 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 LightBeacon)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.LightBeacon)) name.vb: Task(Of List(Of LightBeacon)) 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.LightBeacon name: LightBeacon - 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.LightBeacon name: LightBeacon - name: ) - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System