17 lines
416 B
C#
17 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Domain;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
public class HostUpdateStatusManager : GenericManagerBase<HostUpdateStatus>, IHostUpdateStatusManager
|
|
{
|
|
public IList<HostUpdateStatus> LoadAllByHostUpdate(HostUpdate hostUpdate)
|
|
{
|
|
return CurrentRepository.LoadAll().Where(r => r.HostUpdate == hostUpdate).ToList();
|
|
}
|
|
}
|
|
}
|