This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
Kreta.BusinessLogic/HelperClasses

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Data;
namespace Kreta.BusinessLogic.HelperClasses
{
public class TanuloErtekelesGridHelperCo
{
public DataSet DataSet { get; set; }
public DateTime FelevVegeDatum { get; set; }
public int TanevId { get; set; }
public bool IsJegyekAtlagaMegjelenik { get; set; }
public DateTime NaplozarasDatuma { get; set; }
public DateTime? Datum { get; set; }
public TanuloErtekelesVisibilityCo TanuloErtekelesVisibilityCo { get; set; }
public List<int> EgyszerAdhatoErtekelesTipusIds { get; set; }
// NOTE: Performancia miatt használunk Dictionary-t List helyett.
public Dictionary<int, ErtekelesModCo> ErtekelesModDictionary { get; set; }
}
}