This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,70 @@
using System;
namespace Kreta.BusinessLogic.HelperClasses
{
public class FoglalkozasCO
{
public int? ID { get; set; }
public bool UseFoglalkozas { get; set; }
public int Hetirend { get; set; }
public int? TanoranKivuliFoglalkozas { get; set; }
public int? OsztalyCsoportId { get; set; }
public int? TantargyId { get; set; }
public int TanarID { get; set; }
public string Tanarok { get; set; }
public DateTime? Kezdete { get; set; }
public DateTime? Vege { get; set; }
public DateTime? ErvenyessegKezdete { get; set; }
public DateTime? ErvenyessegVege { get; set; }
public int? TeremID { get; set; }
public bool Sorszamozando { get; set; }
public bool ParhuzamosOra { get; set; }
public bool Tulora { get; set; }
public bool TAMOPOra { get; set; }
public bool NemSzakrendszeruOra { get; set; }
public bool IKTTanora { get; set; }
public bool NemzetisegiOra { get; set; }
public bool IsFelnottoktatasiSzerzodes { get; set; }
public bool MindennaposTestneveles { get; set; }
public bool IPRTanora { get; set; }
public bool Differencialt { get; set; }
public bool Kooperativ { get; set; }
public bool Meres { get; set; }
public bool Drama { get; set; }
public bool Tiop { get; set; }
public bool Bontott { get; set; }
public bool KIPOra { get; set; }
public bool VEKOP73317 { get; set; }
public bool KAPOra { get; set; }
}
}