Interface IServiceConfigService
- Namespace
- adas_core.Application.Services.Interfaces
- Assembly
- adas-core.Application.dll
public interface IServiceConfigService
- Extension Methods
Methods
Get(string)
Asynchronously retrieves a ServiceConfig by its identifier, returning null if no matching configuration is found.
Task<ServiceConfig?> Get(string id)
Parameters
idstringThe identifier of the service configuration to retrieve.
Returns
- Task<ServiceConfig>
A task that represents the asynchronous operation. The task result contains the matching ServiceConfig if found, or
nullif no configuration exists for the given identifier.