fix bug in last

This commit is contained in:
Collin M. Barrett 2017-10-26 21:49:37 -05:00
parent 7995697920
commit a4ece09905
2 changed files with 4 additions and 2 deletions

View file

@ -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();
}
}

View file

@ -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();
}