1905 lines
86 KiB
YAML
1905 lines
86 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IUnitService
|
|
id: IUnitService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
children:
|
|
- adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById(adas_core.Domain.Models.MongoModels.Unit)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.FindById(System.Nullable{MongoDB.Bson.ObjectId})
|
|
- adas_core.Application.Services.Interfaces.IUnitService.FindByName(System.String)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName(System.String,System.String)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.GetAll(System.Boolean)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact
|
|
- adas_core.Application.Services.Interfaces.IUnitService.GetByName(System.String)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId,System.Boolean,System.Boolean)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId,System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact(MongoDB.Bson.ObjectId)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits(adas_core.Domain.Models.Filter.PaginationFilter,System.Boolean)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.InsertOne(adas_core.Domain.Models.MongoModels.Unit)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.UnitConfiguration)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit(adas_core.Domain.Models.MongoModels.Unit)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo(MongoDB.Bson.ObjectId,System.String,System.String,System.String)
|
|
- adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList(adas_core.Domain.Models.DTO.UpdateUnitIdListDto)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: IUnitService
|
|
nameWithType: IUnitService
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService
|
|
type: Interface
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: IUnitService
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 10
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
syntax:
|
|
content: public interface IUnitService
|
|
content.vb: Public Interface IUnitService
|
|
derivedClasses:
|
|
- adas_core.Application.Services.UnitService
|
|
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.IUnitService.GetAll(System.Boolean)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.GetAll(System.Boolean)
|
|
id: GetAll(System.Boolean)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetAll(bool)
|
|
nameWithType: IUnitService.GetAll(bool)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetAll(bool)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetAll
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 17
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously retrieves all units, with an option to include their associated POCs.
|
|
example: []
|
|
syntax:
|
|
content: Task<List<Unit>> GetAll(bool withPocs = false)
|
|
parameters:
|
|
- id: withPocs
|
|
type: System.Boolean
|
|
description: Indicates whether the returned units should include their associated POCs.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Unit}}
|
|
description: A task representing the asynchronous operation, containing the list of units.
|
|
content.vb: Function GetAll(withPocs As Boolean = False) As Task(Of List(Of Unit))
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.GetAll*
|
|
nameWithType.vb: IUnitService.GetAll(Boolean)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.GetAll(Boolean)
|
|
name.vb: GetAll(Boolean)
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact
|
|
id: GetAllCompact
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetAllCompact()
|
|
nameWithType: IUnitService.GetAllCompact()
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact()
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetAllCompact
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 22
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously retrieves a compact list of all units, returning minimal summary information for each unit.
|
|
example: []
|
|
syntax:
|
|
content: Task<List<UnitInfoDto>> GetAllCompact()
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.UnitInfoDto}}
|
|
description: A task that represents the asynchronous operation. The task result contains a list of <xref href="adas_core.Domain.Models.DTO.UnitInfoDto" data-throw-if-not-resolved="false"></xref> objects with the compact information of all units.
|
|
content.vb: Function GetAllCompact() As Task(Of List(Of UnitInfoDto))
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact(MongoDB.Bson.ObjectId)
|
|
id: GetOneCompact(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetOneCompact(ObjectId)
|
|
nameWithType: IUnitService.GetOneCompact(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetOneCompact
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 29
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Retrieves a compact representation of a unit info by its identifier.
|
|
example: []
|
|
syntax:
|
|
content: Task<UnitInfoDto> GetOneCompact(ObjectId id)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The unique identifier of the unit to retrieve.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.UnitInfoDto}
|
|
description: A task that represents the asynchronous operation, containing the compact unit information.
|
|
content.vb: Function GetOneCompact(id As ObjectId) As Task(Of UnitInfoDto)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetByName(System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.GetByName(System.String)
|
|
id: GetByName(System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetByName(string)
|
|
nameWithType: IUnitService.GetByName(string)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetByName(string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetByName
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 37
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously retrieves a <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> by its name.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> GetByName(string unit)
|
|
parameters:
|
|
- id: unit
|
|
type: System.String
|
|
description: The name of the unit to look up.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that represents the asynchronous operation. The task result contains the matching <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> if found; otherwise, <code>null</code>.
|
|
content.vb: Function GetByName(unit As String) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.GetByName*
|
|
nameWithType.vb: IUnitService.GetByName(String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.GetByName(String)
|
|
name.vb: GetByName(String)
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId,System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId,System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean)
|
|
id: GetInfo(MongoDB.Bson.ObjectId,System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum},System.Boolean,System.Boolean)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetInfo(ObjectId, LocaleEnum?, bool, bool)
|
|
nameWithType: IUnitService.GetInfo(ObjectId, LocaleEnum?, bool, bool)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId, adas_core.Domain.Models.Masters.LocaleEnum?, bool, bool)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetInfo
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 48
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Retrieves information for a unit identified by the specified <code class="paramref">id</code>, returning <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> when no matching unit is found.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> GetInfo(ObjectId id, LocaleEnum? dataLocale, bool fillLists = true, bool withPoCs = false)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The unique identifier of the unit to look up.
|
|
- id: dataLocale
|
|
type: System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum}
|
|
description: Optional locale used to localize the returned unit data.
|
|
- id: fillLists
|
|
type: System.Boolean
|
|
description: When <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a>, populates the related lists on the returned unit.
|
|
- id: withPoCs
|
|
type: System.Boolean
|
|
description: When <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a>, includes the unit's points of contact in the result.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that yields the located <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref>, or <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> if no unit matches the given id.
|
|
content.vb: Function GetInfo(id As ObjectId, dataLocale As LocaleEnum?, fillLists As Boolean = True, withPoCs As Boolean = False) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.GetInfo*
|
|
nameWithType.vb: IUnitService.GetInfo(ObjectId, LocaleEnum?, Boolean, Boolean)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId, adas_core.Domain.Models.Masters.LocaleEnum?, Boolean, Boolean)
|
|
name.vb: GetInfo(ObjectId, LocaleEnum?, Boolean, Boolean)
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId,System.Boolean,System.Boolean)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId,System.Boolean,System.Boolean)
|
|
id: GetInfo(MongoDB.Bson.ObjectId,System.Boolean,System.Boolean)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetInfo(ObjectId, bool, bool)
|
|
nameWithType: IUnitService.GetInfo(ObjectId, bool, bool)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId, bool, bool)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetInfo
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 56
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Retrieves information about a unit identified by the specified <code class="paramref">id</code>, optionally including related points of contact and devices.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> GetInfo(ObjectId id, bool withPoCs = true, bool withDevices = true)
|
|
parameters:
|
|
- id: id
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The identifier of the unit to retrieve information for.
|
|
- id: withPoCs
|
|
type: System.Boolean
|
|
description: Indicates whether related points of contact should be included in the result. Defaults to <code>true</code>.
|
|
- id: withDevices
|
|
type: System.Boolean
|
|
description: Indicates whether related devices should be included in the result. Defaults to <code>true</code>.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that represents the asynchronous operation. The task result contains the <code>Unit</code> if found, or <code>null</code> if no unit matches the specified identifier.
|
|
content.vb: Function GetInfo(id As ObjectId, withPoCs As Boolean = True, withDevices As Boolean = True) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.GetInfo*
|
|
nameWithType.vb: IUnitService.GetInfo(ObjectId, Boolean, Boolean)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.GetInfo(MongoDB.Bson.ObjectId, Boolean, Boolean)
|
|
name.vb: GetInfo(ObjectId, Boolean, Boolean)
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
id: FindByPatientId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindByPatientId(ObjectId)
|
|
nameWithType: IUnitService.FindByPatientId(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindByPatientId
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 63
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously retrieves the unit associated with the specified patient identifier, returning <code>null</code> when no matching unit exists.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> FindByPatientId(ObjectId patientId)
|
|
parameters:
|
|
- id: patientId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The unique identifier of the patient whose unit is being looked up.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that represents the asynchronous lookup, containing the matching <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> if found, or <code>null</code> if no unit is associated with the patient.
|
|
content.vb: Function FindByPatientId(patientId As ObjectId) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindById(System.Nullable{MongoDB.Bson.ObjectId})
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.FindById(System.Nullable{MongoDB.Bson.ObjectId})
|
|
id: FindById(System.Nullable{MongoDB.Bson.ObjectId})
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindById(ObjectId?)
|
|
nameWithType: IUnitService.FindById(ObjectId?)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindById(MongoDB.Bson.ObjectId?)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindById
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 71
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously finds and returns a <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> matching the specified identifier.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> FindById(ObjectId? id)
|
|
parameters:
|
|
- id: id
|
|
type: System.Nullable{MongoDB.Bson.ObjectId}
|
|
description: The unique identifier of the <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> to retrieve. May be <code>null</code>.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that represents the asynchronous operation. The task result contains the <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> if found; otherwise, <code>null</code>.
|
|
content.vb: Function FindById(id As ObjectId?) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.FindById*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindByName(System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.FindByName(System.String)
|
|
id: FindByName(System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindByName(string?)
|
|
nameWithType: IUnitService.FindByName(string?)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindByName(string?)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindByName
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 77
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously retrieves a <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> entity matching the specified name.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> FindByName(string? name)
|
|
parameters:
|
|
- id: name
|
|
type: System.String
|
|
description: The name used to look up the unit. Can be null.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that resolves to the matching <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> if found; otherwise, null.
|
|
content.vb: Function FindByName(name As String) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.FindByName*
|
|
nameWithType.vb: IUnitService.FindByName(String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.FindByName(String)
|
|
name.vb: FindByName(String)
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName(System.String,System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName(System.String,System.String)
|
|
id: FindByUnitNameOrPocName(System.String,System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindByUnitNameOrPocName(string?, string?)
|
|
nameWithType: IUnitService.FindByUnitNameOrPocName(string?, string?)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName(string?, string?)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindByUnitNameOrPocName
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 86
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: >-
|
|
Asynchronously retrieves a <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> by matching either its unit name or point-of-contact (POC) name.
|
|
|
|
Returns <code>null</code> if no matching unit is found.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> FindByUnitNameOrPocName(string? name, string? pocName)
|
|
parameters:
|
|
- id: name
|
|
type: System.String
|
|
description: The unit name to search for. May be <code>null</code>.
|
|
- id: pocName
|
|
type: System.String
|
|
description: The point-of-contact (POC) name to search for. May be <code>null</code>.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> containing the matched <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if no unit is found.
|
|
content.vb: Function FindByUnitNameOrPocName(name As String, pocName As String) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName*
|
|
nameWithType.vb: IUnitService.FindByUnitNameOrPocName(String, String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName(String, String)
|
|
name.vb: FindByUnitNameOrPocName(String, String)
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.InsertOne(adas_core.Domain.Models.MongoModels.Unit)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.InsertOne(adas_core.Domain.Models.MongoModels.Unit)
|
|
id: InsertOne(adas_core.Domain.Models.MongoModels.Unit)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: InsertOne(Unit)
|
|
nameWithType: IUnitService.InsertOne(Unit)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.InsertOne(adas_core.Domain.Models.MongoModels.Unit)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: InsertOne
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 94
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Inserts a single <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> into the underlying data store and returns the resulting entity wrapped in a task.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> InsertOne(Unit unit)
|
|
parameters:
|
|
- id: unit
|
|
type: adas_core.Domain.Models.MongoModels.Unit
|
|
description: The <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> instance to be inserted.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that resolves to the inserted <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if the insertion did not produce a result.
|
|
content.vb: Function InsertOne(unit As Unit) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.InsertOne*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit(adas_core.Domain.Models.MongoModels.Unit)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit(adas_core.Domain.Models.MongoModels.Unit)
|
|
id: UpdateUnit(adas_core.Domain.Models.MongoModels.Unit)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: UpdateUnit(Unit)
|
|
nameWithType: IUnitService.UpdateUnit(Unit)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit(adas_core.Domain.Models.MongoModels.Unit)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: UpdateUnit
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 100
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Updates the specified unit in the system.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> UpdateUnit(Unit unit)
|
|
parameters:
|
|
- id: unit
|
|
type: adas_core.Domain.Models.MongoModels.Unit
|
|
description: The unit containing the updated information to persist.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that returns the updated <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if the unit was not found.
|
|
content.vb: Function UpdateUnit(unit As Unit) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
id: FindUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindUnitsByMasterListId(ObjectId, MasterListType)
|
|
nameWithType: IUnitService.FindUnitsByMasterListId(ObjectId, MasterListType)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId, adas_core.Domain.Enums.MasterListType)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindUnitsByMasterListId
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 108
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: >-
|
|
Asynchronously retrieves the collection of units associated with the specified master list identifier and master list type.
|
|
|
|
Returns null when no matching units are found.
|
|
example: []
|
|
syntax:
|
|
content: Task<IEnumerable<Unit>?> FindUnitsByMasterListId(ObjectId masterListId, MasterListType masterListType)
|
|
parameters:
|
|
- id: masterListId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The unique identifier of the master list whose units should be retrieved.
|
|
- id: masterListType
|
|
type: adas_core.Domain.Enums.MasterListType
|
|
description: The type of the master list used to scope the unit lookup.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Unit}}
|
|
description: A task that returns an <xref href="System.Collections.Generic.IEnumerable%601" data-throw-if-not-resolved="false"></xref> of <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref> when matches exist, or null when no matching units are found.
|
|
content.vb: Function FindUnitsByMasterListId(masterListId As ObjectId, masterListType As MasterListType) As Task(Of IEnumerable(Of Unit))
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
id: CountUnitsByMasterListId(MongoDB.Bson.ObjectId,adas_core.Domain.Enums.MasterListType)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: CountUnitsByMasterListId(ObjectId, MasterListType)
|
|
nameWithType: IUnitService.CountUnitsByMasterListId(ObjectId, MasterListType)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId(MongoDB.Bson.ObjectId, adas_core.Domain.Enums.MasterListType)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: CountUnitsByMasterListId
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 115
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously counts the number of units associated with the specified master list, filtered by the given master list type.
|
|
example: []
|
|
syntax:
|
|
content: Task<long> CountUnitsByMasterListId(ObjectId masterListId, MasterListType masterListType)
|
|
parameters:
|
|
- id: masterListId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The unique identifier of the master list whose units should be counted.
|
|
- id: masterListType
|
|
type: adas_core.Domain.Enums.MasterListType
|
|
description: The type of the master list used to scope the count to the appropriate unit category.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Int64}
|
|
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> that represents the asynchronous operation, containing the total number of units matching the specified master list.
|
|
content.vb: Function CountUnitsByMasterListId(masterListId As ObjectId, masterListType As MasterListType) As Task(Of Long)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId)
|
|
id: FindUnitsByMasterListId(MongoDB.Bson.ObjectId)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: FindUnitsByMasterListId(ObjectId)
|
|
nameWithType: IUnitService.FindUnitsByMasterListId(ObjectId)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId(MongoDB.Bson.ObjectId)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: FindUnitsByMasterListId
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 121
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously retrieves the collection of units associated with the specified master list identifier.
|
|
example: []
|
|
syntax:
|
|
content: Task<IEnumerable<Unit>> FindUnitsByMasterListId(ObjectId masterListId)
|
|
parameters:
|
|
- id: masterListId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The identifier of the master list whose units are to be retrieved.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Unit}}
|
|
description: A task that represents the asynchronous operation, containing the collection of units that belong to the specified master list.
|
|
content.vb: Function FindUnitsByMasterListId(masterListId As ObjectId) As Task(Of IEnumerable(Of Unit))
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList(adas_core.Domain.Models.DTO.UpdateUnitIdListDto)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList(adas_core.Domain.Models.DTO.UpdateUnitIdListDto)
|
|
id: UpdateUnitMasterList(adas_core.Domain.Models.DTO.UpdateUnitIdListDto)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: UpdateUnitMasterList(UpdateUnitIdListDto)
|
|
nameWithType: IUnitService.UpdateUnitMasterList(UpdateUnitIdListDto)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList(adas_core.Domain.Models.DTO.UpdateUnitIdListDto)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: UpdateUnitMasterList
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 127
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Updates the unit master list based on the provided unit ID list DTO.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> UpdateUnitMasterList(UpdateUnitIdListDto updateUnitListDto)
|
|
parameters:
|
|
- id: updateUnitListDto
|
|
type: adas_core.Domain.Models.DTO.UpdateUnitIdListDto
|
|
description: The DTO containing the list of unit IDs to be used for updating the master list.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that represents the asynchronous operation. The task result contains the updated <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if the update was not applicable.
|
|
content.vb: Function UpdateUnitMasterList(updateUnitListDto As UpdateUnitIdListDto) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.UnitConfiguration)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.UnitConfiguration)
|
|
id: UpdateConfiguration(MongoDB.Bson.ObjectId,adas_core.Domain.Models.MongoModels.UnitConfiguration)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: UpdateConfiguration(ObjectId, UnitConfiguration)
|
|
nameWithType: IUnitService.UpdateConfiguration(ObjectId, UnitConfiguration)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration(MongoDB.Bson.ObjectId, adas_core.Domain.Models.MongoModels.UnitConfiguration)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: UpdateConfiguration
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 134
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously updates the configuration for the specified unit using the provided configuration data.
|
|
example: []
|
|
syntax:
|
|
content: Task<bool> UpdateConfiguration(ObjectId unitIdParsed, UnitConfiguration unitConfiguration)
|
|
parameters:
|
|
- id: unitIdParsed
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The parsed identifier of the unit whose configuration will be updated.
|
|
- id: unitConfiguration
|
|
type: adas_core.Domain.Models.MongoModels.UnitConfiguration
|
|
description: The new configuration values to apply to the unit.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: A task that resolves to <code>true</code> if the configuration was successfully updated; otherwise, <code>false</code>.
|
|
content.vb: Function UpdateConfiguration(unitIdParsed As ObjectId, unitConfiguration As UnitConfiguration) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById(adas_core.Domain.Models.MongoModels.Unit)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById(adas_core.Domain.Models.MongoModels.Unit)
|
|
id: DeleteUnitById(adas_core.Domain.Models.MongoModels.Unit)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: DeleteUnitById(Unit)
|
|
nameWithType: IUnitService.DeleteUnitById(Unit)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById(adas_core.Domain.Models.MongoModels.Unit)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: DeleteUnitById
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 140
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously deletes a unit identified by the provided <code class="paramref">unit</code> entity's identifier.
|
|
example: []
|
|
syntax:
|
|
content: Task<bool> DeleteUnitById(Unit unit)
|
|
parameters:
|
|
- id: unit
|
|
type: adas_core.Domain.Models.MongoModels.Unit
|
|
description: The unit entity whose identifier is used to locate and delete the record.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: A <xref href="System.Threading.Tasks.Task%601" data-throw-if-not-resolved="false"></xref> that represents the asynchronous operation, containing a value indicating whether the unit was successfully deleted.
|
|
content.vb: Function DeleteUnitById(unit As Unit) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById*
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo(MongoDB.Bson.ObjectId,System.String,System.String,System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo(MongoDB.Bson.ObjectId,System.String,System.String,System.String)
|
|
id: UpdateUnitInfo(MongoDB.Bson.ObjectId,System.String,System.String,System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: UpdateUnitInfo(ObjectId, string, string, string?)
|
|
nameWithType: IUnitService.UpdateUnitInfo(ObjectId, string, string, string?)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo(MongoDB.Bson.ObjectId, string, string, string?)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: UpdateUnitInfo
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 150
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: >-
|
|
Updates the information of an existing unit identified by <code class="paramref">unitId</code>, including its name, title, and optionally its configuration object ID.
|
|
|
|
Returns the updated unit, or <code>null</code> when no matching unit is found.
|
|
example: []
|
|
syntax:
|
|
content: Task<Unit?> UpdateUnitInfo(ObjectId unitId, string name, string title, string? configObsId = null)
|
|
parameters:
|
|
- id: unitId
|
|
type: MongoDB.Bson.ObjectId
|
|
description: The identifier of the unit to update.
|
|
- id: name
|
|
type: System.String
|
|
description: The new name to assign to the unit.
|
|
- id: title
|
|
type: System.String
|
|
description: The new title to assign to the unit.
|
|
- id: configObsId
|
|
type: System.String
|
|
description: An optional configuration object ID to associate with the unit.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
description: A task that yields the updated <xref href="adas_core.Domain.Models.MongoModels.Unit" data-throw-if-not-resolved="false"></xref>, or <code>null</code> if the unit does not exist.
|
|
content.vb: Function UpdateUnitInfo(unitId As ObjectId, name As String, title As String, configObsId As String = Nothing) As Task(Of Unit)
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo*
|
|
nameWithType.vb: IUnitService.UpdateUnitInfo(ObjectId, String, String, String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo(MongoDB.Bson.ObjectId, String, String, String)
|
|
name.vb: UpdateUnitInfo(ObjectId, String, String, String)
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits(adas_core.Domain.Models.Filter.PaginationFilter,System.Boolean)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits(adas_core.Domain.Models.Filter.PaginationFilter,System.Boolean)
|
|
id: GetPaginatedUnits(adas_core.Domain.Models.Filter.PaginationFilter,System.Boolean)
|
|
parent: adas_core.Application.Services.Interfaces.IUnitService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetPaginatedUnits(PaginationFilter, bool)
|
|
nameWithType: IUnitService.GetPaginatedUnits(PaginationFilter, bool)
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits(adas_core.Domain.Models.Filter.PaginationFilter, bool)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetPaginatedUnits
|
|
path: ../../adas-core.Application/Services/Interfaces/IUnitService.cs
|
|
startLine: 157
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Retrieves a paginated list of units based on the provided filter, optionally including their associated points of contact.
|
|
example: []
|
|
syntax:
|
|
content: Task<PaginationResponse<Unit>> GetPaginatedUnits(PaginationFilter filter, bool withPoCs)
|
|
parameters:
|
|
- id: filter
|
|
type: adas_core.Domain.Models.Filter.PaginationFilter
|
|
description: The pagination filter that defines the page size, page number, and any additional query criteria.
|
|
- id: withPoCs
|
|
type: System.Boolean
|
|
description: A flag indicating whether the response should include the points of contact associated with each unit.
|
|
return:
|
|
type: System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.Unit}}
|
|
description: A task that represents the asynchronous operation, containing the paginated response of units.
|
|
content.vb: Function GetPaginatedUnits(filter As PaginationFilter, withPoCs As Boolean) As Task(Of PaginationResponse(Of Unit))
|
|
overload: adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits*
|
|
nameWithType.vb: IUnitService.GetPaginatedUnits(PaginationFilter, Boolean)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits(adas_core.Domain.Models.Filter.PaginationFilter, Boolean)
|
|
name.vb: GetPaginatedUnits(PaginationFilter, Boolean)
|
|
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.IUnitService.GetAll*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.GetAll
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_GetAll_System_Boolean_
|
|
name: GetAll
|
|
nameWithType: IUnitService.GetAll
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetAll
|
|
- uid: System.Boolean
|
|
commentId: T:System.Boolean
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
name: bool
|
|
nameWithType: bool
|
|
fullName: bool
|
|
nameWithType.vb: Boolean
|
|
fullName.vb: Boolean
|
|
name.vb: Boolean
|
|
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Unit}}
|
|
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.MongoModels.Unit}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<List<Unit>>
|
|
nameWithType: Task<List<Unit>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.MongoModels.Unit>>
|
|
nameWithType.vb: Task(Of List(Of Unit))
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.MongoModels.Unit))
|
|
name.vb: Task(Of List(Of Unit))
|
|
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.Unit
|
|
name: Unit
|
|
- 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.Unit
|
|
name: Unit
|
|
- name: )
|
|
- name: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: System.Threading.Tasks.Task`1
|
|
commentId: T:System.Threading.Tasks.Task`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<TResult>
|
|
nameWithType: Task<TResult>
|
|
fullName: System.Threading.Tasks.Task<TResult>
|
|
nameWithType.vb: Task(Of TResult)
|
|
fullName.vb: System.Threading.Tasks.Task(Of TResult)
|
|
name.vb: Task(Of TResult)
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- name: TResult
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: TResult
|
|
- name: )
|
|
- uid: System.Threading.Tasks
|
|
commentId: N:System.Threading.Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Threading.Tasks
|
|
nameWithType: System.Threading.Tasks
|
|
fullName: System.Threading.Tasks
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Threading
|
|
name: Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading
|
|
- name: .
|
|
- uid: System.Threading.Tasks
|
|
name: Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Threading
|
|
name: Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading
|
|
- name: .
|
|
- uid: System.Threading.Tasks
|
|
name: Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
|
|
- uid: adas_core.Domain.Models.DTO.UnitInfoDto
|
|
commentId: T:adas_core.Domain.Models.DTO.UnitInfoDto
|
|
parent: adas_core.Domain.Models.DTO
|
|
href: adas_core.Domain.Models.DTO.UnitInfoDto.html
|
|
name: UnitInfoDto
|
|
nameWithType: UnitInfoDto
|
|
fullName: adas_core.Domain.Models.DTO.UnitInfoDto
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_GetAllCompact
|
|
name: GetAllCompact
|
|
nameWithType: IUnitService.GetAllCompact
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetAllCompact
|
|
- uid: System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.UnitInfoDto}}
|
|
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.List{adas_core.Domain.Models.DTO.UnitInfoDto}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<List<UnitInfoDto>>
|
|
nameWithType: Task<List<UnitInfoDto>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.List<adas_core.Domain.Models.DTO.UnitInfoDto>>
|
|
nameWithType.vb: Task(Of List(Of UnitInfoDto))
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.List(Of adas_core.Domain.Models.DTO.UnitInfoDto))
|
|
name.vb: Task(Of List(Of UnitInfoDto))
|
|
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.DTO.UnitInfoDto
|
|
name: UnitInfoDto
|
|
- 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.DTO.UnitInfoDto
|
|
name: UnitInfoDto
|
|
- name: )
|
|
- name: )
|
|
- uid: adas_core.Domain.Models.DTO
|
|
commentId: N:adas_core.Domain.Models.DTO
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Models.DTO
|
|
nameWithType: adas_core.Domain.Models.DTO
|
|
fullName: adas_core.Domain.Models.DTO
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models
|
|
name: Models
|
|
href: adas_core.Domain.Models.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models.DTO
|
|
name: DTO
|
|
href: adas_core.Domain.Models.DTO.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models
|
|
name: Models
|
|
href: adas_core.Domain.Models.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models.DTO
|
|
name: DTO
|
|
href: adas_core.Domain.Models.DTO.html
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_GetOneCompact_MongoDB_Bson_ObjectId_
|
|
name: GetOneCompact
|
|
nameWithType: IUnitService.GetOneCompact
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetOneCompact
|
|
- uid: MongoDB.Bson.ObjectId
|
|
commentId: T:MongoDB.Bson.ObjectId
|
|
parent: MongoDB.Bson
|
|
isExternal: true
|
|
name: ObjectId
|
|
nameWithType: ObjectId
|
|
fullName: MongoDB.Bson.ObjectId
|
|
- uid: System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.UnitInfoDto}
|
|
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.DTO.UnitInfoDto}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<UnitInfoDto>
|
|
nameWithType: Task<UnitInfoDto>
|
|
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.DTO.UnitInfoDto>
|
|
nameWithType.vb: Task(Of UnitInfoDto)
|
|
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.DTO.UnitInfoDto)
|
|
name.vb: Task(Of UnitInfoDto)
|
|
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.DTO.UnitInfoDto
|
|
name: UnitInfoDto
|
|
- 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.DTO.UnitInfoDto
|
|
name: UnitInfoDto
|
|
- name: )
|
|
- uid: MongoDB.Bson
|
|
commentId: N:MongoDB.Bson
|
|
isExternal: true
|
|
name: MongoDB.Bson
|
|
nameWithType: MongoDB.Bson
|
|
fullName: MongoDB.Bson
|
|
spec.csharp:
|
|
- uid: MongoDB
|
|
name: MongoDB
|
|
isExternal: true
|
|
- name: .
|
|
- uid: MongoDB.Bson
|
|
name: Bson
|
|
isExternal: true
|
|
spec.vb:
|
|
- uid: MongoDB
|
|
name: MongoDB
|
|
isExternal: true
|
|
- name: .
|
|
- uid: MongoDB.Bson
|
|
name: Bson
|
|
isExternal: true
|
|
- uid: adas_core.Domain.Models.MongoModels.Unit
|
|
commentId: T:adas_core.Domain.Models.MongoModels.Unit
|
|
parent: adas_core.Domain.Models.MongoModels
|
|
href: adas_core.Domain.Models.MongoModels.Unit.html
|
|
name: Unit
|
|
nameWithType: Unit
|
|
fullName: adas_core.Domain.Models.MongoModels.Unit
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetByName*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.GetByName
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_GetByName_System_String_
|
|
name: GetByName
|
|
nameWithType: IUnitService.GetByName
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetByName
|
|
- 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{adas_core.Domain.Models.MongoModels.Unit}
|
|
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.MongoModels.Unit}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<Unit>
|
|
nameWithType: Task<Unit>
|
|
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.MongoModels.Unit>
|
|
nameWithType.vb: Task(Of Unit)
|
|
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.MongoModels.Unit)
|
|
name.vb: Task(Of Unit)
|
|
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.Unit
|
|
name: Unit
|
|
- 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.Unit
|
|
name: Unit
|
|
- name: )
|
|
- uid: adas_core.Domain.Models.MongoModels
|
|
commentId: N:adas_core.Domain.Models.MongoModels
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Models.MongoModels
|
|
nameWithType: adas_core.Domain.Models.MongoModels
|
|
fullName: adas_core.Domain.Models.MongoModels
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models
|
|
name: Models
|
|
href: adas_core.Domain.Models.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models.MongoModels
|
|
name: MongoModels
|
|
href: adas_core.Domain.Models.MongoModels.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models
|
|
name: Models
|
|
href: adas_core.Domain.Models.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Models.MongoModels
|
|
name: MongoModels
|
|
href: adas_core.Domain.Models.MongoModels.html
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetInfo*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.GetInfo
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_GetInfo_MongoDB_Bson_ObjectId_System_Nullable_adas_core_Domain_Models_Masters_LocaleEnum__System_Boolean_System_Boolean_
|
|
name: GetInfo
|
|
nameWithType: IUnitService.GetInfo
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetInfo
|
|
- uid: System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum}
|
|
commentId: T:System.Nullable{adas_core.Domain.Models.Masters.LocaleEnum}
|
|
parent: System
|
|
definition: System.Nullable`1
|
|
href: adas_core.Domain.Models.Masters.LocaleEnum.html
|
|
name: LocaleEnum?
|
|
nameWithType: LocaleEnum?
|
|
fullName: adas_core.Domain.Models.Masters.LocaleEnum?
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Models.Masters.LocaleEnum
|
|
name: LocaleEnum
|
|
href: adas_core.Domain.Models.Masters.LocaleEnum.html
|
|
- name: '?'
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Models.Masters.LocaleEnum
|
|
name: LocaleEnum
|
|
href: adas_core.Domain.Models.Masters.LocaleEnum.html
|
|
- name: '?'
|
|
- uid: System.Nullable`1
|
|
commentId: T:System.Nullable`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
|
name: Nullable<T>
|
|
nameWithType: Nullable<T>
|
|
fullName: System.Nullable<T>
|
|
nameWithType.vb: Nullable(Of T)
|
|
fullName.vb: System.Nullable(Of T)
|
|
name.vb: Nullable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_FindByPatientId_MongoDB_Bson_ObjectId_
|
|
name: FindByPatientId
|
|
nameWithType: IUnitService.FindByPatientId
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindByPatientId
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindById*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.FindById
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_FindById_System_Nullable_MongoDB_Bson_ObjectId__
|
|
name: FindById
|
|
nameWithType: IUnitService.FindById
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindById
|
|
- uid: System.Nullable{MongoDB.Bson.ObjectId}
|
|
commentId: T:System.Nullable{MongoDB.Bson.ObjectId}
|
|
parent: System
|
|
definition: System.Nullable`1
|
|
name: ObjectId?
|
|
nameWithType: ObjectId?
|
|
fullName: MongoDB.Bson.ObjectId?
|
|
spec.csharp:
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: '?'
|
|
spec.vb:
|
|
- uid: MongoDB.Bson.ObjectId
|
|
name: ObjectId
|
|
isExternal: true
|
|
- name: '?'
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindByName*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.FindByName
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_FindByName_System_String_
|
|
name: FindByName
|
|
nameWithType: IUnitService.FindByName
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindByName
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_FindByUnitNameOrPocName_System_String_System_String_
|
|
name: FindByUnitNameOrPocName
|
|
nameWithType: IUnitService.FindByUnitNameOrPocName
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindByUnitNameOrPocName
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.InsertOne*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.InsertOne
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_InsertOne_adas_core_Domain_Models_MongoModels_Unit_
|
|
name: InsertOne
|
|
nameWithType: IUnitService.InsertOne
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.InsertOne
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_UpdateUnit_adas_core_Domain_Models_MongoModels_Unit_
|
|
name: UpdateUnit
|
|
nameWithType: IUnitService.UpdateUnit
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnit
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
commentId: T:System.Collections.Generic.IEnumerable`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
name: IEnumerable<T>
|
|
nameWithType: IEnumerable<T>
|
|
fullName: System.Collections.Generic.IEnumerable<T>
|
|
nameWithType.vb: IEnumerable(Of T)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
|
|
name.vb: IEnumerable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- 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: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_FindUnitsByMasterListId_MongoDB_Bson_ObjectId_adas_core_Domain_Enums_MasterListType_
|
|
name: FindUnitsByMasterListId
|
|
nameWithType: IUnitService.FindUnitsByMasterListId
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.FindUnitsByMasterListId
|
|
- uid: adas_core.Domain.Enums.MasterListType
|
|
commentId: T:adas_core.Domain.Enums.MasterListType
|
|
parent: adas_core.Domain.Enums
|
|
href: adas_core.Domain.Enums.MasterListType.html
|
|
name: MasterListType
|
|
nameWithType: MasterListType
|
|
fullName: adas_core.Domain.Enums.MasterListType
|
|
- uid: System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Unit}}
|
|
commentId: T:System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{adas_core.Domain.Models.MongoModels.Unit}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<IEnumerable<Unit>>
|
|
nameWithType: Task<IEnumerable<Unit>>
|
|
fullName: System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<adas_core.Domain.Models.MongoModels.Unit>>
|
|
nameWithType.vb: Task(Of IEnumerable(Of Unit))
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IEnumerable(Of adas_core.Domain.Models.MongoModels.Unit))
|
|
name.vb: Task(Of IEnumerable(Of Unit))
|
|
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.Unit
|
|
name: Unit
|
|
- 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.Unit
|
|
name: Unit
|
|
- name: )
|
|
- name: )
|
|
- 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: adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_CountUnitsByMasterListId_MongoDB_Bson_ObjectId_adas_core_Domain_Enums_MasterListType_
|
|
name: CountUnitsByMasterListId
|
|
nameWithType: IUnitService.CountUnitsByMasterListId
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.CountUnitsByMasterListId
|
|
- uid: System.Threading.Tasks.Task{System.Int64}
|
|
commentId: T:System.Threading.Tasks.Task{System.Int64}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<long>
|
|
nameWithType: Task<long>
|
|
fullName: System.Threading.Tasks.Task<long>
|
|
nameWithType.vb: Task(Of Long)
|
|
fullName.vb: System.Threading.Tasks.Task(Of Long)
|
|
name.vb: Task(Of Long)
|
|
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.Int64
|
|
name: long
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.int64
|
|
- 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.Int64
|
|
name: Long
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.int64
|
|
- name: )
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_UpdateUnitMasterList_adas_core_Domain_Models_DTO_UpdateUnitIdListDto_
|
|
name: UpdateUnitMasterList
|
|
nameWithType: IUnitService.UpdateUnitMasterList
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitMasterList
|
|
- uid: adas_core.Domain.Models.DTO.UpdateUnitIdListDto
|
|
commentId: T:adas_core.Domain.Models.DTO.UpdateUnitIdListDto
|
|
parent: adas_core.Domain.Models.DTO
|
|
href: adas_core.Domain.Models.DTO.UpdateUnitIdListDto.html
|
|
name: UpdateUnitIdListDto
|
|
nameWithType: UpdateUnitIdListDto
|
|
fullName: adas_core.Domain.Models.DTO.UpdateUnitIdListDto
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_UpdateConfiguration_MongoDB_Bson_ObjectId_adas_core_Domain_Models_MongoModels_UnitConfiguration_
|
|
name: UpdateConfiguration
|
|
nameWithType: IUnitService.UpdateConfiguration
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateConfiguration
|
|
- uid: adas_core.Domain.Models.MongoModels.UnitConfiguration
|
|
commentId: T:adas_core.Domain.Models.MongoModels.UnitConfiguration
|
|
parent: adas_core.Domain.Models.MongoModels
|
|
href: adas_core.Domain.Models.MongoModels.UnitConfiguration.html
|
|
name: UnitConfiguration
|
|
nameWithType: UnitConfiguration
|
|
fullName: adas_core.Domain.Models.MongoModels.UnitConfiguration
|
|
- uid: System.Threading.Tasks.Task{System.Boolean}
|
|
commentId: T:System.Threading.Tasks.Task{System.Boolean}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<bool>
|
|
nameWithType: Task<bool>
|
|
fullName: System.Threading.Tasks.Task<bool>
|
|
nameWithType.vb: Task(Of Boolean)
|
|
fullName.vb: System.Threading.Tasks.Task(Of Boolean)
|
|
name.vb: Task(Of Boolean)
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- uid: System.Boolean
|
|
name: bool
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.Boolean
|
|
name: Boolean
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: )
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_DeleteUnitById_adas_core_Domain_Models_MongoModels_Unit_
|
|
name: DeleteUnitById
|
|
nameWithType: IUnitService.DeleteUnitById
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.DeleteUnitById
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_UpdateUnitInfo_MongoDB_Bson_ObjectId_System_String_System_String_System_String_
|
|
name: UpdateUnitInfo
|
|
nameWithType: IUnitService.UpdateUnitInfo
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.UpdateUnitInfo
|
|
- uid: adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits
|
|
href: adas_core.Application.Services.Interfaces.IUnitService.html#adas_core_Application_Services_Interfaces_IUnitService_GetPaginatedUnits_adas_core_Domain_Models_Filter_PaginationFilter_System_Boolean_
|
|
name: GetPaginatedUnits
|
|
nameWithType: IUnitService.GetPaginatedUnits
|
|
fullName: adas_core.Application.Services.Interfaces.IUnitService.GetPaginatedUnits
|
|
- 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.Unit}}
|
|
commentId: T:System.Threading.Tasks.Task{adas_core.Domain.Models.Responses.PaginationResponse{adas_core.Domain.Models.MongoModels.Unit}}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<PaginationResponse<Unit>>
|
|
nameWithType: Task<PaginationResponse<Unit>>
|
|
fullName: System.Threading.Tasks.Task<adas_core.Domain.Models.Responses.PaginationResponse<adas_core.Domain.Models.MongoModels.Unit>>
|
|
nameWithType.vb: Task(Of PaginationResponse(Of Unit))
|
|
fullName.vb: System.Threading.Tasks.Task(Of adas_core.Domain.Models.Responses.PaginationResponse(Of adas_core.Domain.Models.MongoModels.Unit))
|
|
name.vb: Task(Of PaginationResponse(Of Unit))
|
|
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.Unit
|
|
name: Unit
|
|
- 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.Unit
|
|
name: Unit
|
|
- 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
|