11 lines
322 B
C#
11 lines
322 B
C#
using CoreProfilerExample.Service.Models.Dtos;
|
|
using CoreProfilerExample.Service.Models.ParameterDtos;
|
|
|
|
namespace CoreProfilerExample.Service.Interfaces
|
|
{
|
|
public interface IWeatherService
|
|
{
|
|
public Task<GetWeatherForecastDto> GetWeatherForecastAsync(GetWeatherForecastParameterDto parameterDto);
|
|
}
|
|
}
|