BLL.BootEntry.GetBootEntry C# (CSharp) Method

GetBootEntry() public static method

public static GetBootEntry ( int BootEntryId ) : Models.BootEntry
BootEntryId int
return Models.BootEntry
        public static Models.BootEntry GetBootEntry(int BootEntryId)
        {
            using (var uow = new DAL.UnitOfWork())
            {
                return uow.BootEntryRepository.GetById(BootEntryId);
            }
        }