using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Service.Implement { public class HostUpdateStatusManager : GenericManagerBase, IHostUpdateStatusManager { public IList LoadAllByHostUpdate(HostUpdate hostUpdate) { return CurrentRepository.LoadAll().Where(r => r.HostUpdate == hostUpdate).ToList(); } } }