using adas_core.Domain.Models.MongoModels;
using MongoDB.Bson;
namespace adas_core.Application.Services.Interfaces;
public interface IAlertValuesService
{
///
/// Asynchronously finds a identified by the specified key.
/// Returns null when no matching configuration observation exists.
///
/// The identifier of the configuration observation to look up.
/// A task that yields the matching , or null if no record is found.
Task FindByKey(ObjectId key);
}