Files
PersonaCasa/back/Application/Contracts/Services/IWantItAllService.cs
Alejandro Sarmiento b672887299 Primera subida
2024-04-06 03:32:16 +02:00

11 lines
237 B
C#

using back.Entities.DTOs.Response;
namespace back.Application.Contracts.Services
{
public interface IWantItAllService
{
Task<IWantItAll> GetWithAsyncAwait();
Task<IWantItAll> GetWithTasks();
}
}