8 lines
186 B
C#
8 lines
186 B
C#
using adas_core.Domain.Models;
|
|
|
|
namespace adas_core.Application.Services.Interfaces;
|
|
|
|
public interface IPoCMappingService
|
|
{
|
|
Task<PatientLocation?> Map(PatientLocation original);
|
|
} |