BLL.MunkiManagedInstall.GetManagedInstall C# (CSharp) Method

GetManagedInstall() public static method

public static GetManagedInstall ( int managedInstallId ) : Models.MunkiManifestManagedInstall
managedInstallId int
return Models.MunkiManifestManagedInstall
        public static Models.MunkiManifestManagedInstall GetManagedInstall(int managedInstallId)
        {
            using (var uow = new DAL.UnitOfWork())
            {
                return uow.MunkiManagedInstallRepository.GetById(managedInstallId);
            }
        }