79 lines
3 KiB
C#
79 lines
3 KiB
C#
using System;
|
|
using Kreta.Enums.ManualEnums;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses.ApaczaiProgramCOs
|
|
{
|
|
public class TanuloAdatokCo
|
|
{
|
|
// személyes adatok
|
|
public string OktatasiAzonosito { get; set; }
|
|
public string EloTag { get; set; }
|
|
public string CsaladiNev { get; set; }
|
|
public string Utonev { get; set; }
|
|
public string SzuletesiCsaladNev { get; set; }
|
|
public string SzuletesiUtonev { get; set; }
|
|
public string AnyjaCsaladiNeve { get; set; }
|
|
public string AnyjaUtonev { get; set; }
|
|
public string Anyanyelv { get; set; }
|
|
public string SzuletesiOrszag { get; set; }
|
|
public string SzuletesiHely { get; set; }
|
|
public DateTime SzuletesiIdo { get; set; }
|
|
public string Allampolgarsag { get; set; }
|
|
public string Allampolgarsag2 { get; set; }
|
|
public string IgazolvanyTipus { get; set; }
|
|
public string IgazolvanySzam { get; set; }
|
|
public string BelepesiNev { get; set; }
|
|
public string FenntartoAzonosito { get; set; }
|
|
public string FenntartoNev { get; set; }
|
|
public Guid IntezmenyEgyediAzonosito { get; set; }
|
|
public string IntezmenyNev { get; set; }
|
|
public string IntezmenyAzonosito { get; set; }
|
|
public Guid IdpEgyediAzonosito { get; set; }
|
|
public string OsztalyfonokNev { get; set; }
|
|
public string OsztalyNev { get; set; }
|
|
public string TAJSzam { get; set; }
|
|
|
|
// bankszámla adatok
|
|
public string BankszamlaSzam { get; set; }
|
|
public string BankszamlaTulajdonosNeve { get; set; }
|
|
public string BankszamlaTulajdonos { get; set; }
|
|
public string SzamlavezetoBank { get; set; }
|
|
|
|
// Allandoelérhetőség adatok
|
|
public TanuloElerhetosegAdatokCo AllandoElerhetoseg { get; set; }
|
|
|
|
// Tartozkodasielérhetőség adatok
|
|
public TanuloElerhetosegAdatokCo TartozkodasiElerhetoseg { get; set; }
|
|
|
|
|
|
// átlag adatok
|
|
public double? KeziAtlag { get; set; }
|
|
public double? SzamitottAtlag { get; set; }
|
|
public string Feljegyzes { get; set; }
|
|
public int HatranyosHelyzetIgazolasKiallitasDatuma { get; set; }
|
|
public ApaczaiPalyazatStatuszEnum? PalyazatStatusz { get; set; }
|
|
|
|
// módosító adatok
|
|
public int ModositoId { get; set; }
|
|
public string ModositoNev { get; set; }
|
|
}
|
|
|
|
public class TanuloElerhetosegAdatokCo
|
|
{
|
|
public string Ajto { get; set; }
|
|
public string CimTipus { get; set; }
|
|
public string Emelet { get; set; }
|
|
public string Hazszam { get; set; }
|
|
public string HelysegNev { get; set; }
|
|
public string Iranyitoszam { get; set; }
|
|
public string KozteruletNev { get; set; }
|
|
public string KozteruletTipus { get; set; }
|
|
public string Orszag { get; set; }
|
|
|
|
public string TelefonSzam { get; set; }
|
|
public string TelefonTipus { get; set; }
|
|
|
|
public string Emailcim { get; set; }
|
|
public string EmailTipus { get; set; }
|
|
}
|
|
}
|