### YamlMime:ManagedReference items: - uid: adas_core.Application.Services.Interfaces.IAuthService commentId: T:adas_core.Application.Services.Interfaces.IAuthService id: IAuthService parent: adas_core.Application.Services.Interfaces children: - adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId) - adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse - adas_core.Application.Services.Interfaces.IAuthService.GetToken - adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId) langs: - csharp - vb name: IAuthService nameWithType: IAuthService fullName: adas_core.Application.Services.Interfaces.IAuthService type: Interface source: remote: path: adas-core.Application/Services/Interfaces/IAuthService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: IAuthService path: ../../adas-core.Application/Services/Interfaces/IAuthService.cs startLine: 6 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces syntax: content: public interface IAuthService content.vb: Public Interface IAuthService derivedClasses: - adas_core.Application.Services.AuthService 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.IAuthService.GetLoginResponse commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse id: GetLoginResponse parent: adas_core.Application.Services.Interfaces.IAuthService langs: - csharp - vb name: GetLoginResponse() nameWithType: IAuthService.GetLoginResponse() fullName: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse() type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAuthService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetLoginResponse path: ../../adas-core.Application/Services/Interfaces/IAuthService.cs startLine: 12 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves the current login response, returning null when no login state is available. example: [] syntax: content: Task GetLoginResponse() return: type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.LoginResponse} description: A that resolves to the current , or null if no login response exists. content.vb: Function GetLoginResponse() As Task(Of LoginResponse) overload: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse* - uid: adas_core.Application.Services.Interfaces.IAuthService.GetToken commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetToken id: GetToken parent: adas_core.Application.Services.Interfaces.IAuthService langs: - csharp - vb name: GetToken() nameWithType: IAuthService.GetToken() fullName: adas_core.Application.Services.Interfaces.IAuthService.GetToken() type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAuthService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetToken path: ../../adas-core.Application/Services/Interfaces/IAuthService.cs startLine: 17 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously retrieves a token. example: [] syntax: content: Task GetToken() return: type: System.Threading.Tasks.Task{System.String} description: A task that represents the asynchronous operation. The task result contains the retrieved token string. content.vb: Function GetToken() As Task(Of String) overload: adas_core.Application.Services.Interfaces.IAuthService.GetToken* - uid: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId) id: GetByUnitId(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAuthService langs: - csharp - vb name: GetByUnitId(ObjectId) nameWithType: IAuthService.GetByUnitId(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAuthService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetByUnitId path: ../../adas-core.Application/Services/Interfaces/IAuthService.cs startLine: 23 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Retrieves a list of authorizations associated with the specified unit identifier. example: [] syntax: content: Task> GetByUnitId(ObjectId unitId) parameters: - id: unitId type: MongoDB.Bson.ObjectId description: The unique identifier of the unit whose authorizations are being queried. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}} description: A task that represents the asynchronous operation, containing a list of objects matching the provided unit identifier. content.vb: Function GetByUnitId(unitId As ObjectId) As Task(Of List(Of Authorization)) overload: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId* - uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId) id: DeleteByDisplayId(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAuthService langs: - csharp - vb name: DeleteByDisplayId(ObjectId) nameWithType: IAuthService.DeleteByDisplayId(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAuthService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteByDisplayId path: ../../adas-core.Application/Services/Interfaces/IAuthService.cs startLine: 29 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously deletes the record identified by the specified display identifier. example: [] syntax: content: Task DeleteByDisplayId(ObjectId displayId) parameters: - id: displayId type: MongoDB.Bson.ObjectId description: The display identifier of the record to delete. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation, containing a value indicating whether the record was successfully deleted. content.vb: Function DeleteByDisplayId(displayId As ObjectId) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId* - uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId) id: DeleteByUnitId(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAuthService langs: - csharp - vb name: DeleteByUnitId(ObjectId) nameWithType: IAuthService.DeleteByUnitId(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAuthService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: DeleteByUnitId path: ../../adas-core.Application/Services/Interfaces/IAuthService.cs startLine: 35 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Asynchronously deletes the entity associated with the specified unit identifier. example: [] syntax: content: Task DeleteByUnitId(ObjectId unitId) parameters: - id: unitId type: MongoDB.Bson.ObjectId description: The unique identifier of the unit whose associated entity should be deleted. return: type: System.Threading.Tasks.Task{System.Boolean} description: A task that represents the asynchronous operation, containing a value indicating whether the deletion was successful. content.vb: Function DeleteByUnitId(unitId As ObjectId) As Task(Of Boolean) overload: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId* - uid: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId) commentId: M:adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId) id: GetUserAuthorities(MongoDB.Bson.ObjectId) parent: adas_core.Application.Services.Interfaces.IAuthService langs: - csharp - vb name: GetUserAuthorities(ObjectId) nameWithType: IAuthService.GetUserAuthorities(ObjectId) fullName: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities(MongoDB.Bson.ObjectId) type: Method source: remote: path: adas-core.Application/Services/Interfaces/IAuthService.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetUserAuthorities path: ../../adas-core.Application/Services/Interfaces/IAuthService.cs startLine: 41 assemblies: - adas-core.Application namespace: adas_core.Application.Services.Interfaces summary: Retrieves the list of authorizations associated with the specified user identifier. example: [] syntax: content: Task> GetUserAuthorities(ObjectId id) parameters: - id: id type: MongoDB.Bson.ObjectId description: The unique identifier of the user whose authorizations are being retrieved. return: type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}} description: A task that represents the asynchronous operation, containing the list of authorizations for the user. content.vb: Function GetUserAuthorities(id As ObjectId) As Task(Of List(Of Authorization)) overload: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities* 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: 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.Responses.LoginResponse commentId: T:adas_core.Domain.Models.Responses.LoginResponse parent: adas_core.Domain.Models.Responses href: adas_core.Domain.Models.Responses.LoginResponse.html name: LoginResponse nameWithType: LoginResponse fullName: adas_core.Domain.Models.Responses.LoginResponse - uid: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse* commentId: Overload:adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetLoginResponse name: GetLoginResponse nameWithType: IAuthService.GetLoginResponse fullName: adas_core.Application.Services.Interfaces.IAuthService.GetLoginResponse - uid: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.LoginResponse} commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.LoginResponse} 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 LoginResponse) fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.LoginResponse) name.vb: Task(Of LoginResponse) 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.LoginResponse name: LoginResponse - 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.LoginResponse name: LoginResponse - name: ) - uid: adas_core.Domain.Models.Responses commentId: N:adas_core.Domain.Models.Responses href: adas_core.html name: adas_core.Domain.Models.Responses nameWithType: adas_core.Domain.Models.Responses fullName: adas_core.Domain.Models.Responses 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.Responses name: Responses href: adas_core.Domain.Models.Responses.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.Responses name: Responses href: adas_core.Domain.Models.Responses.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.IAuthService.GetToken* commentId: Overload:adas_core.Application.Services.Interfaces.IAuthService.GetToken href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetToken name: GetToken nameWithType: IAuthService.GetToken fullName: adas_core.Application.Services.Interfaces.IAuthService.GetToken - uid: System.Threading.Tasks.Task{System.String} commentId: T:System.Threading.Tasks.Task{System.String} 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 String) fullName.vb: System.Threading.Tasks.Task(Of String) name.vb: Task(Of String) 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.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - 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.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: adas_core.Domain.Models.MongoModels.Authorization commentId: T:adas_core.Domain.Models.MongoModels.Authorization parent: adas_core.Domain.Models.MongoModels href: adas_core.Domain.Models.MongoModels.Authorization.html name: Authorization nameWithType: Authorization fullName: adas_core.Domain.Models.MongoModels.Authorization - uid: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId* commentId: Overload:adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetByUnitId_MongoDB_Bson_ObjectId_ name: GetByUnitId nameWithType: IAuthService.GetByUnitId fullName: adas_core.Application.Services.Interfaces.IAuthService.GetByUnitId - uid: MongoDB.Bson.ObjectId commentId: T:MongoDB.Bson.ObjectId parent: MongoDB.Bson isExternal: true name: ObjectId nameWithType: ObjectId fullName: MongoDB.Bson.ObjectId - uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}} commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Authorization}} 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 Authorization)) fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Authorization)) name.vb: Task(Of List(Of Authorization)) 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.Authorization name: Authorization - 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.Authorization name: Authorization - name: ) - name: ) - uid: adas_core.Domain.Models.MongoModels commentId: N:adas_core.Domain.Models.MongoModels href: adas_core.html name: adas_core.Domain.Models.MongoModels nameWithType: adas_core.Domain.Models.MongoModels fullName: adas_core.Domain.Models.MongoModels spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - name: . - uid: adas_core.Domain.Models.MongoModels name: MongoModels href: adas_core.Domain.Models.MongoModels.html - uid: MongoDB.Bson commentId: N:MongoDB.Bson isExternal: true name: MongoDB.Bson nameWithType: MongoDB.Bson fullName: MongoDB.Bson spec.csharp: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true spec.vb: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true - uid: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId* commentId: Overload:adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByDisplayId_MongoDB_Bson_ObjectId_ name: DeleteByDisplayId nameWithType: IAuthService.DeleteByDisplayId fullName: adas_core.Application.Services.Interfaces.IAuthService.DeleteByDisplayId - 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.Interfaces.IAuthService.DeleteByUnitId* commentId: Overload:adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_DeleteByUnitId_MongoDB_Bson_ObjectId_ name: DeleteByUnitId nameWithType: IAuthService.DeleteByUnitId fullName: adas_core.Application.Services.Interfaces.IAuthService.DeleteByUnitId - uid: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities* commentId: Overload:adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities href: adas_core.Application.Services.Interfaces.IAuthService.html#adas_core_Application_Services_Interfaces_IAuthService_GetUserAuthorities_MongoDB_Bson_ObjectId_ name: GetUserAuthorities nameWithType: IAuthService.GetUserAuthorities fullName: adas_core.Application.Services.Interfaces.IAuthService.GetUserAuthorities