Core.AnimalService.GetAllAnimals C# (CSharp) Method

GetAllAnimals() public method

public GetAllAnimals ( ) : IEnumerable
return IEnumerable
        public IEnumerable<Animal> GetAllAnimals()
        {
            return _database.Query(new GetAllAnimals());
        }