using adas_core.Domain.Models.MongoModels;
namespace adas_core.Application.Services.Interfaces;
public interface IServiceConfigService
{
///
/// Asynchronously retrieves a by its identifier, returning null if no matching configuration is found.
///
/// The identifier of the service configuration to retrieve.
/// A task that represents the asynchronous operation. The task result contains the matching if found, or null if no configuration exists for the given identifier.
Task Get(string id);
}