Files
2023-06-17 14:16:09 +03:00

11 lines
265 B
C#

namespace MyOffice.Data.Repositories.Currency;
using Models.Currencies;
public class CurrencyGlobalRepository : AppRepository<CurrencyGlobal>, ICurrencyGlobalRepository
{
public List<CurrencyGlobal> GetAll()
{
return _context.CurrencyGlobals.ToList();
}
}