kreta/Kreta.BusinessLogic/HelperClasses/TanuloCsoportCO.cs
2024-03-13 00:33:46 +01:00

45 lines
2 KiB
C#

using System;
using Kreta.BusinessLogic.HelperClasses.OsztalyCsoportbaSorolas;
namespace Kreta.BusinessLogic.HelperClasses
{
public class TanuloCsoportCO
{
public int? ID { get; set; }
public DateTime? BejegyDatum { get; set; }
public DateTime? BelepDatum { get; set; }
public DateTime? KilepDatum { get; set; }
public int TanuloId { get; set; }
public int OsztalyCsoportId { get; set; }
public string OsztalyNev { get; set; }
public int? TantervId { get; set; }
public SorolasZaradek Zaradek { get; set; }
public string NevElotagNelkul { get; set; }
public string Megjegyzes { get; set; }
public string BefogadoIntezmeny { get; set; }
public int NaploSorszam { get; set; }
public string TorzslapSzam { get; set; }
public int? AgazatId { get; set; }
public int? SzakmacsoportId { get; set; }
public int? SzakkepesitesId { get; set; }
public int? ReszSzakkepesitesId { get; set; }
public int? HozottIgazolatlanHianyzas { get; set; }
public int? HozottIgazolatlanKesesPercben { get; set; }
public int? HozottIgazoltHianyzas { get; set; }
public int? HozottIgazoltKesesPercben { get; set; }
public bool? IsESL16EvesUtanBelepett { get; set; }
public int? TanuloEvfolyamTipusId { get; set; }
public bool IsOsszevontOsztaly { get; set; }
public int? JogviszonyTipusId { get; set; }
public int? AgazatUjSzktTipusId { get; set; }
public int? SzakmaTipusId { get; set; }
public int? SzakmairanyTipusId { get; set; }
public int? SzakiranyNktTipusId { get; set; }
public int? SzakkepesitesNktTipusId { get; set; }
public int? TanulmanyiTeruletNktTipusId { get; set; }
public int? AgazatReszSzakmaTipusId { get; set; }
public int? SzakmaReszSzakmaTipusId { get; set; }
public int? ReszSzakmaTipusId { get; set; }
}
}