25 lines
739 B
C#
25 lines
739 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class TanulokAdataiRiportCO
|
|
{
|
|
public TanulokAdataiRiportCO()
|
|
{
|
|
TanulokNemenkent = new Dictionary<string, int>();
|
|
TanulokEvfolyamonkent = new Dictionary<string, int>();
|
|
TanulokKorfa = new List<KorfaElem>();
|
|
}
|
|
public Dictionary<string, int> TanulokNemenkent { get; set; }
|
|
public Dictionary<string, int> TanulokEvfolyamonkent { get; set; }
|
|
public List<KorfaElem> TanulokKorfa { get; set; }
|
|
}
|
|
|
|
public class KorfaElem
|
|
{
|
|
public int Eletkor { get; set; }
|
|
public string Nem { get; set; }
|
|
public int Ertek { get; set; }
|
|
}
|
|
|
|
}
|