8 lines
155 B
C#
8 lines
155 B
C#
namespace MyOffice.Data.Repositories.Currency;
|
|
|
|
using Models.Currencies;
|
|
|
|
public interface ICurrencyGlobalRepository
|
|
{
|
|
List<CurrencyGlobal> GetAll();
|
|
} |