using ZB.MOM.WW.MxGateway.Server.Galaxy;
namespace ZB.MOM.WW.MxGateway.Server.Dashboard;
/// Projects the precomputed Galaxy cache dashboard summary.
internal static class DashboardGalaxyProjector
{
/// Projects the cache entry to a dashboard Galaxy summary.
/// The Galaxy hierarchy cache entry.
/// The precomputed from the cache entry.
public static DashboardGalaxySummary Project(GalaxyHierarchyCacheEntry entry)
{
return entry.DashboardSummary;
}
}