BLL.MunkiManagedInstall.GetAllManagedInstallsForMt C# (CSharp) Method

GetAllManagedInstallsForMt() public static method

public static GetAllManagedInstallsForMt ( int manifestTemplateId ) : List
manifestTemplateId int
return List
        public static List<Models.MunkiManifestManagedInstall> GetAllManagedInstallsForMt(int manifestTemplateId)
        {
            using (var uow = new DAL.UnitOfWork())
            {
                return uow.MunkiManagedInstallRepository.Get(s => s.ManifestTemplateId == manifestTemplateId);
            }
        }