70 lines
1.6 KiB
C#
70 lines
1.6 KiB
C#
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; }
|
|
}
|
|
}
|