### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.Interfaces.INoticeService commentId: T:adas_core.Application.Services.Interfaces.INoticeService id: INoticeService parent: adas_core.Application.Services.Interfaces children: - adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) - adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync(System.String) - adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync - adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.INoticeService.InsertNotice(adas_core.Domain.Models.MongoModels.Notice) - adas_core.Application.Services.Interfaces.INoticeService.SaveRequest(adas_core.Domain.Models.ApiRequest) - adas_core.Application.Services.Interfaces.INoticeService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest) - adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) langs: - csharp - vb name: INoticeService nameWithType: INoticeService fullName: adas_core.Application.Services.Interfaces.INoticeService type: Interface source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: INoticeService path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 6 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces syntax: content: public interface INoticeService content.vb: Public Interface INoticeService derivedClasses: - adas_core.Application.Services.NoticeService 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.INoticeService.DeleteNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) id: DeleteNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: DeleteNoticeAsync(Notice) nameWithType: INoticeService.DeleteNoticeAsync(Notice) fullName: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteNoticeAsync path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 13 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously deletes the specified notice. example: [] syntax: content: Task DeleteNoticeAsync(Notice notice) parameters: - id: notice type: adas_core.Domain.Models.MongoModels.Notice description: The notice to delete. return: type: System.Threading.Tasks.Task description: A task that represents the asynchronous delete operation. content.vb: Function DeleteNoticeAsync(notice As Notice) As Task overload: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeAsync* - uid: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync(MongoDB.Bson.ObjectId) id: DeleteNoticeByIdAsync(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: DeleteNoticeByIdAsync(ObjectId) nameWithType: INoticeService.DeleteNoticeByIdAsync(ObjectId) fullName: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteNoticeByIdAsync path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 18 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously deletes a notice identified by the specified identifier. example: [] syntax: content: Task DeleteNoticeByIdAsync(ObjectId noticeId) parameters: - id: noticeId type: MongoDB.Bson.ObjectId description: The unique identifier of the notice to delete. return: type: System.Threading.Tasks.Task content.vb: Function DeleteNoticeByIdAsync(noticeId As ObjectId) As Task overload: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync* - uid: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync(MongoDB.Bson.ObjectId) id: GetNoticeByIdAsync(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: GetNoticeByIdAsync(ObjectId) nameWithType: INoticeService.GetNoticeByIdAsync(ObjectId) fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetNoticeByIdAsync path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 25 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Asynchronously retrieves a entity by its unique identifier from the data store. Returns null when no notice matches the provided identifier. example: [] syntax: content: Task GetNoticeByIdAsync(ObjectId noticeId) parameters: - id: noticeId type: MongoDB.Bson.ObjectId description: The that uniquely identifies the notice to retrieve. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Notice} description: A containing the matching , or null if no notice is found. content.vb: Function GetNoticeByIdAsync(noticeId As ObjectId) As Task(Of Notice) overload: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync* - uid: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync(System.String) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync(System.String) id: GetNoticeByTypeAsync(System.String) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: GetNoticeByTypeAsync(string) nameWithType: INoticeService.GetNoticeByTypeAsync(string) fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync(string) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetNoticeByTypeAsync path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 32 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: >- Asynchronously retrieves a collection of notices filtered by the specified notice type. The task result may be null when no notices match the given type. example: [] syntax: content: Task?> GetNoticeByTypeAsync(string noticeType) parameters: - id: noticeType type: System.String description: The type of notice to filter by. return: type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Notice}} description: A task containing an enumerable of matching objects, or null if none are found. content.vb: Function GetNoticeByTypeAsync(noticeType As String) As Task(Of IEnumerable(Of Notice)) overload: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync* nameWithType.vb: INoticeService.GetNoticeByTypeAsync(String) fullName.vb: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync(String) name.vb: GetNoticeByTypeAsync(String) - uid: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync commentId: M:adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync id: GetNoticesAsync parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: GetNoticesAsync() nameWithType: INoticeService.GetNoticesAsync() fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync() type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetNoticesAsync path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 37 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves a collection of notices. example: [] syntax: content: Task> GetNoticesAsync() return: type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Notice}} description: A task that represents the asynchronous operation. The task result contains an enumerable collection of objects. content.vb: Function GetNoticesAsync() As Task(Of IEnumerable(Of Notice)) overload: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync* - uid: adas_core.Application.Services.Interfaces.INoticeService.InsertNotice(adas_core.Domain.Models.MongoModels.Notice) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.InsertNotice(adas_core.Domain.Models.MongoModels.Notice) id: InsertNotice(adas_core.Domain.Models.MongoModels.Notice) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: InsertNotice(Notice) nameWithType: INoticeService.InsertNotice(Notice) fullName: adas_core.Application.Services.Interfaces.INoticeService.InsertNotice(adas_core.Domain.Models.MongoModels.Notice) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: InsertNotice path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 43 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Inserts a new notice into the data store. example: [] syntax: content: Task InsertNotice(Notice notice) parameters: - id: notice type: adas_core.Domain.Models.MongoModels.Notice description: The notice entity to insert. return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Notice} description: A task that represents the asynchronous operation. The task result contains the inserted , or null if the notice could not be inserted. content.vb: Function InsertNotice(notice As Notice) As Task(Of Notice) overload: adas_core.Application.Services.Interfaces.INoticeService.InsertNotice* - uid: adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) id: UpdateNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: UpdateNoticeAsync(Notice) nameWithType: INoticeService.UpdateNoticeAsync(Notice) fullName: adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync(adas_core.Domain.Models.MongoModels.Notice) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: UpdateNoticeAsync path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 48 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously updates an existing notice in the system. example: [] syntax: content: Task UpdateNoticeAsync(Notice notice) parameters: - id: notice type: adas_core.Domain.Models.MongoModels.Notice description: The notice entity containing the updated information to be persisted. return: type: System.Threading.Tasks.Task content.vb: Function UpdateNoticeAsync(notice As Notice) As Task overload: adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync* - uid: adas_core.Application.Services.Interfaces.INoticeService.SaveRequest(adas_core.Domain.Models.ApiRequest) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.SaveRequest(adas_core.Domain.Models.ApiRequest) id: SaveRequest(adas_core.Domain.Models.ApiRequest) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: SaveRequest(ApiRequest) nameWithType: INoticeService.SaveRequest(ApiRequest) fullName: adas_core.Application.Services.Interfaces.INoticeService.SaveRequest(adas_core.Domain.Models.ApiRequest) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: SaveRequest path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 53 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Persists the provided API request to the data store. example: [] syntax: content: Task SaveRequest(ApiRequest apiRequest) parameters: - id: apiRequest type: adas_core.Domain.Models.ApiRequest description: The API request to be saved. return: type: System.Threading.Tasks.Task content.vb: Function SaveRequest(apiRequest As ApiRequest) As Task overload: adas_core.Application.Services.Interfaces.INoticeService.SaveRequest* - uid: adas_core.Application.Services.Interfaces.INoticeService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest) id: SaveRequestAsync(adas_core.Domain.Models.ApiRequest) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: SaveRequestAsync(ApiRequest) nameWithType: INoticeService.SaveRequestAsync(ApiRequest) fullName: adas_core.Application.Services.Interfaces.INoticeService.SaveRequestAsync(adas_core.Domain.Models.ApiRequest) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: SaveRequestAsync path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 58 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously persists the specified API request. example: [] syntax: content: Task SaveRequestAsync(ApiRequest apiRequest) parameters: - id: apiRequest type: adas_core.Domain.Models.ApiRequest description: The API request to save. return: type: System.Threading.Tasks.Task content.vb: Function SaveRequestAsync(apiRequest As ApiRequest) As Task overload: adas_core.Application.Services.Interfaces.INoticeService.SaveRequestAsync* - uid: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId(MongoDB.Bson.ObjectId) id: GetNoticesByDisplayId(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.INoticeService langs: - csharp - vb name: GetNoticesByDisplayId(ObjectId) nameWithType: INoticeService.GetNoticesByDisplayId(ObjectId) fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/INoticeService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetNoticesByDisplayId path: ../../adas-core.Application/Services/Interfaces/INoticeService.cs startLine: 64 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves the collection of notices associated with the specified display identifier. example: [] syntax: content: Task?> GetNoticesByDisplayId(ObjectId displayId) parameters: - id: displayId type: MongoDB.Bson.ObjectId description: The identifier of the display whose notices should be retrieved. return: type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Notice}} description: A task that returns the notices for the display, or null when no notices are found for the given display. content.vb: Function GetNoticesByDisplayId(displayId As ObjectId) As Task(Of IEnumerable(Of Notice)) overload: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId* 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.INoticeService.DeleteNoticeAsync* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeAsync href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_DeleteNoticeAsync_adas_core_Domain_Models_MongoModels_Notice_ name: DeleteNoticeAsync nameWithType: INoticeService.DeleteNoticeAsync fullName: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeAsync - uid: adas_core.Domain.Models.MongoModels.Notice commentId: T:adas_core.Domain.Models.MongoModels.Notice parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.Notice.html name: Notice nameWithType: Notice fullName: adas_core.Domain.Models.MongoModels.Notice - 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: 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: System.Threading.Tasks commentId: N:System.Threading.Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Threading.Tasks nameWithType: System.Threading.Tasks fullName: System.Threading.Tasks spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Threading name: Threading isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading - name: . - uid: System.Threading.Tasks name: Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Threading name: Threading isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading - name: . - uid: System.Threading.Tasks name: Tasks isExternal: true href: https://learn.microsoft.com/dotnet/api/system.threading.tasks - uid: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_DeleteNoticeByIdAsync_MongoDB_Bson_ObjectId_ name: DeleteNoticeByIdAsync nameWithType: INoticeService.DeleteNoticeByIdAsync fullName: adas_core.Application.Services.Interfaces.INoticeService.DeleteNoticeByIdAsync - uid: MongoDB.Bson.ObjectId commentId: T:MongoDB.Bson.ObjectId parent: MongoDB.Bson isExternal: true name: ObjectId nameWithType: ObjectId fullName: MongoDB.Bson.ObjectId - 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: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_GetNoticeByIdAsync_MongoDB_Bson_ObjectId_ name: GetNoticeByIdAsync nameWithType: INoticeService.GetNoticeByIdAsync fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByIdAsync - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Notice} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Notice} 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 Notice) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.Notice) name.vb: Task(Of Notice) 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.Notice name: Notice - 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.Notice name: Notice - name: ) - uid: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_GetNoticeByTypeAsync_System_String_ name: GetNoticeByTypeAsync nameWithType: INoticeService.GetNoticeByTypeAsync fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticeByTypeAsync - 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.IEnumerable{adas_core.Domain.Models.MongoModels.Notice}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Notice}} 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 IEnumerable(Of Notice)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.MongoModels.Notice)) name.vb: Task(Of IEnumerable(Of Notice)) 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.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - uid: adas_core.Domain.Models.MongoModels.Notice name: Notice - 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.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.MongoModels.Notice name: Notice - name: ) - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_GetNoticesAsync name: GetNoticesAsync nameWithType: INoticeService.GetNoticesAsync fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesAsync - uid: adas_core.Application.Services.Interfaces.INoticeService.InsertNotice* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.InsertNotice href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_InsertNotice_adas_core_Domain_Models_MongoModels_Notice_ name: InsertNotice nameWithType: INoticeService.InsertNotice fullName: adas_core.Application.Services.Interfaces.INoticeService.InsertNotice - uid: adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_UpdateNoticeAsync_adas_core_Domain_Models_MongoModels_Notice_ name: UpdateNoticeAsync nameWithType: INoticeService.UpdateNoticeAsync fullName: adas_core.Application.Services.Interfaces.INoticeService.UpdateNoticeAsync - uid: adas_core.Application.Services.Interfaces.INoticeService.SaveRequest* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.SaveRequest href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_SaveRequest_adas_core_Domain_Models_ApiRequest_ name: SaveRequest nameWithType: INoticeService.SaveRequest fullName: adas_core.Application.Services.Interfaces.INoticeService.SaveRequest - uid: adas_core.Domain.Models.ApiRequest commentId: T:adas_core.Domain.Models.ApiRequest parent: adas_core.Domain.Models href: adas_core.Domain.Models.ApiRequest.html name: ApiRequest nameWithType: ApiRequest fullName: adas_core.Domain.Models.ApiRequest - 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.INoticeService.SaveRequestAsync* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.SaveRequestAsync href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_SaveRequestAsync_adas_core_Domain_Models_ApiRequest_ name: SaveRequestAsync nameWithType: INoticeService.SaveRequestAsync fullName: adas_core.Application.Services.Interfaces.INoticeService.SaveRequestAsync - uid: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId* commentId: Overload:adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId href: adas_core.Application.Services.Interfaces.INoticeService.html#adas_core_Application_Services_Interfaces_INoticeService_GetNoticesByDisplayId_MongoDB_Bson_ObjectId_ name: GetNoticesByDisplayId nameWithType: INoticeService.GetNoticesByDisplayId fullName: adas_core.Application.Services.Interfaces.INoticeService.GetNoticesByDisplayId