irc-netcore-api/IRaCIS.Core.Application/Service/Financial/Interface/IExchangeRateService.cs

16 lines
498 B
C#

using IRaCIS.Application.Contracts;
using System;
using IRaCIS.Core.Infrastructure.Extention;
namespace IRaCIS.Application.Interfaces
{
public interface IExchangeRateService
{
Task<IResponseOutput> AddOrUpdateExchangeRate(ExchangeRateCommand model);
Task<decimal> GetExchangeRateByMonth(string month);
Task<PageOutput<ExchangeRateCommand>> GetExchangeRateList(ExchangeRateQueryDTO queryParam);
Task<IResponseOutput> DeleteExchangeRate(Guid id);
}
}