Files
PersonaCasa/back/Application/Contracts/Services/IWantItAllService.cs
Alejandro Sarmiento eed3cb108f consulta tonta
echale un ojo si te apetece
2024-04-06 04:11:04 +02:00

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();
}
}