BLL.MunkiManagedUninstall.GetAllManagedUnInstallsForMt C# (CSharp) Method

GetAllManagedUnInstallsForMt() public static method

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