using adas_core.Domain.Models;
namespace adas_core.Application.Services.Interfaces;
public interface IPoCMappingService
{
///
/// Asynchronously maps the specified patient location to a new , returning null when no corresponding mapping result is found.
///
/// The source patient location to map from.
/// A task that yields the mapped , or null if no mapping result is available.
Task Map(PatientLocation original);
}