init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
25
Kreta.BusinessLogic/HelperClasses/TanulokAdataiRiportCO.cs
Normal file
25
Kreta.BusinessLogic/HelperClasses/TanulokAdataiRiportCO.cs
Normal file
|
@ -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; }
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue