11 lines
256 B
C#
11 lines
256 B
C#
using ProximaContracts.Domain.Rates.DTOs.Responses;
|
|
|
|
namespace ProximaContracts.Application.Rates.Services
|
|
{
|
|
public interface IRateService
|
|
{
|
|
Task<bool> CheckIfExists(int id);
|
|
Task<IEnumerable<GetAllRatesDto>> GetRates();
|
|
}
|
|
}
|