116 lines
3.3 KiB
C#
116 lines
3.3 KiB
C#
using System;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class IntezmenyCO
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public int IntezmenyId { get; set; }
|
|
|
|
public string Nev { get; set; }
|
|
|
|
public string RovidNev { get; set; }
|
|
|
|
public string Igazgato { get; set; }
|
|
|
|
public string Iranyitoszam { get; set; }
|
|
|
|
public string Varos { get; set; }
|
|
|
|
public string Kozterulet { get; set; }
|
|
|
|
public string KozteruletJellegNev { get; set; }
|
|
|
|
public string Hazszam { get; set; }
|
|
|
|
public string Emelet { get; set; }
|
|
|
|
public string Ajto { get; set; }
|
|
|
|
public string OMKod { get; set; }
|
|
|
|
public string Telefonszam { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string AdminEmail { get; set; }
|
|
|
|
public string FenntartoEmail { get; set; }
|
|
|
|
public bool ElfogadottTTF { get; set; }
|
|
|
|
public bool ElfogadottESL { get; set; }
|
|
|
|
public bool VeglegesTTF { get; set; }
|
|
|
|
public bool VeglegesESL { get; set; }
|
|
|
|
public double? EngedelyezettAllashely { get; set; }
|
|
|
|
public bool IsBeiratkozasVeglegesitve { get; set; }
|
|
|
|
public string IntezmenyAzonosito { get; set; }
|
|
|
|
public string FenntartoAzonosito { get; set; }
|
|
|
|
public string LicenceDatum { get; set; }
|
|
|
|
public bool VeglegesETTF { get; set; }
|
|
|
|
public string AlternativAzonosito { get; set; }
|
|
|
|
public bool IsCsakLepKezelo { get; set; }
|
|
|
|
public bool EnableBAIStatuszVeglegesites { get; set; }
|
|
|
|
public int? Orszag { get; set; }
|
|
|
|
public bool IsSzirIntezmeny { get; set; }
|
|
|
|
public bool IsArchivIntezmeny { get; set; }
|
|
|
|
public string DKTDiakUrl { get; set; }
|
|
|
|
public string DKTTanarUrl { get; set; }
|
|
|
|
public bool IsDKTAktiv { get; set; }
|
|
|
|
public bool IsProjektAktiv { get; set; }
|
|
|
|
public Guid IntezmenyGuid { get; set; }
|
|
|
|
public string IntezmenyCim
|
|
{
|
|
get
|
|
{
|
|
var kozteruletJellegString = KozteruletJellegNev;
|
|
var cim = $"{Iranyitoszam}, {Varos} {Kozterulet} {kozteruletJellegString} {Hazszam}";
|
|
if (!string.IsNullOrWhiteSpace(Emelet))
|
|
{ cim += $" {Emelet} em."; }
|
|
if (!string.IsNullOrWhiteSpace(Ajto))
|
|
{ cim += $" {Ajto}"; }
|
|
return cim;
|
|
}
|
|
}
|
|
|
|
public IntezmenyiDokumentumCO AlapitoOkirat { get; set; }
|
|
public IntezmenyiDokumentumCO SzervezetiEsMukodesiSzabalyzat { get; set; }
|
|
public IntezmenyiDokumentumCO PedagogiaiProgram { get; set; }
|
|
public IntezmenyiDokumentumCO Hazirend { get; set; }
|
|
public IntezmenyiDokumentumCO Munkaterv { get; set; }
|
|
public IntezmenyiDokumentumCO MukodesiEngedely { get; set; }
|
|
public string IktatoSzervezetAzonosito { get; set; }
|
|
public string PoszeidonBejelentkezesiNev { get; set; }
|
|
public bool IsSzakkepzo { get; set; }
|
|
public int JuttatasHatarnap { get; set; }
|
|
public bool IsSzakkepzoJuttatas { get; set; }
|
|
}
|
|
|
|
public class IntezmenyFejlecLablecCo
|
|
{
|
|
public bool IsFejlecOrLablecMegjelenit { get; set; }
|
|
public string Base64Img { get; set; }
|
|
public string HtmlContent { get; set; }
|
|
}
|
|
}
|