using back.Entities; using back.Entities.DTOs.Request; using back.Entities.DTOs.Response; namespace back.Application.Contracts.Services { public interface IWantItAllService { Task ConsultaLocaAwait(ConsultaLoca dto); Task GetWithAsyncAwait(); Task GetWithTasks(); } }