11 lines
237 B
C#
11 lines
237 B
C#
using back.Entities.DTOs.Response;
|
|
|
|
namespace back.Application.Contracts.Services
|
|
{
|
|
public interface IWantItAllService
|
|
{
|
|
Task<IWantItAll> GetWithAsyncAwait();
|
|
Task<IWantItAll> GetWithTasks();
|
|
}
|
|
}
|