NHibernateCouchbaseCacheSample.Models.BeerRepository.FindAll C# (CSharp) Method

FindAll() public method

public FindAll ( ) : IList
return IList
        public IList<Beer> FindAll()
        {
            return FluentSession.GetCurrentSession().CreateCriteria<Beer>().SetCacheable(true).SetCacheMode(CacheMode.Normal).List<Beer>();
        }