fix
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace MyOffice.Data.Repositories.Currency;
|
||||
|
||||
using Models.Currencies;
|
||||
|
||||
public class CurrencyGlobalRepository : AppRepository<CurrencyGlobal>, ICurrencyGlobalRepository
|
||||
{
|
||||
public List<CurrencyGlobal> GetAll()
|
||||
{
|
||||
return _context.CurrencyGlobals.ToList();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user