using CoreProfilerExample.Service.Models.Dtos; using CoreProfilerExample.Service.Models.ParameterDtos; namespace CoreProfilerExample.Service.Interfaces { public interface IWeatherService { public Task GetWeatherForecastAsync(GetWeatherForecastParameterDto parameterDto); } }