13 lines
407 B
C#
13 lines
407 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Kreta.Framework.Caching;
|
|
using Kreta.Framework.Util;
|
|
|
|
namespace Kreta.Ellenorzo.BL.VN.Adatszotar
|
|
{
|
|
internal static class AdatszotarSubqueries
|
|
{
|
|
internal static Dictionary<int, DictionaryItem> GetTipusByIdDictionary(int tipusId, int tanevId)
|
|
=> tipusId.GetItemsByType(tanevId).ToDictionary(x => x.Id, x => x);
|
|
}
|
|
}
|