init
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user