14 lines
354 B
C#
14 lines
354 B
C#
using back.Entities;
|
|
using back.Entities.DTOs.Request;
|
|
using back.Entities.DTOs.Response;
|
|
|
|
namespace back.Application.Contracts.Services
|
|
{
|
|
public interface IWantItAllService
|
|
{
|
|
Task<Persona> ConsultaLocaAwait(ConsultaLoca dto);
|
|
Task<IWantItAll> GetWithAsyncAwait();
|
|
Task<IWantItAll> GetWithTasks();
|
|
}
|
|
}
|