Tests.EmployeeRepositoryEF_Novice.GetAll C# (CSharp) Method

GetAll() public method

public GetAll ( ) : IList
return IList
        public IList<Employee> GetAll()
        {
            using (var context = new CodeFirstModels())
            {
                return context.Employees.ToList();
            }
        }