mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix bug in last
This commit is contained in:
parent
7995697920
commit
a4ece09905
2 changed files with 4 additions and 2 deletions
|
|
@ -1,9 +1,10 @@
|
|||
using System.Collections.Generic;
|
||||
using FilterLists.Data.Entities;
|
||||
|
||||
namespace FilterLists.Services.Contracts
|
||||
{
|
||||
public interface IFilterListService
|
||||
{
|
||||
IEnumerable<IFilterList> GetAll();
|
||||
IEnumerable<FilterList> GetAll();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using FilterLists.Data.Entities;
|
||||
using FilterLists.Data.Repositories.Contracts;
|
||||
using FilterLists.Services.Contracts;
|
||||
|
||||
|
|
@ -13,7 +14,7 @@ public FilterListService(IFilterListRepository filterListRepository)
|
|||
this.filterListRepository = filterListRepository;
|
||||
}
|
||||
|
||||
public IEnumerable<IFilterList> GetAll()
|
||||
public IEnumerable<FilterList> GetAll()
|
||||
{
|
||||
return filterListRepository.GetAll();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue