BLL.Computer.ComputersWithCustomBootMenu C# (CSharp) Method

ComputersWithCustomBootMenu() public static method

public static ComputersWithCustomBootMenu ( ) : IEnumerable
return IEnumerable
        public static IEnumerable<Models.Computer> ComputersWithCustomBootMenu()
        {
            using (var uow = new DAL.UnitOfWork())
            {
                return uow.ComputerRepository.Get(x => x.CustomBootEnabled == 1);

            }
        }