BLL.ComputerMunki.GetComputersForManifestTemplate C# (CSharp) Method

GetComputersForManifestTemplate() public static method

public static GetComputersForManifestTemplate ( int templateId ) : List
templateId int
return List
        public static List<Models.ComputerMunki> GetComputersForManifestTemplate(int templateId)
        {
            using (var uow = new DAL.UnitOfWork())
            {
                return uow.ComputerMunkiRepository.Get(x => x.MunkiTemplateId == templateId);
            }
        }