Tests.EmployeeRepositoryChain.GetAll C# (CSharp) Method

GetAll() public method

public GetAll ( ) : IList
return IList
        public IList<Employee> GetAll()
        {
            return m_DataSource.From(TableName).ToCollection<Employee>().Execute();
        }