Tests.EmployeeRepositoryChain.GetByManager C# (CSharp) Method

GetByManager() public method

public GetByManager ( int managerKey ) : IList
managerKey int
return IList
        public IList<Employee> GetByManager(int managerKey)
        {
            return m_DataSource.From(TableName, new { @ManagerKey = managerKey }).ToCollection<Employee>().Execute();
        }