54 lines
2.1 KiB
C#
54 lines
2.1 KiB
C#
using System;
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class CsoportCO
|
|
{
|
|
public int Id { get; set; }
|
|
public string CsoportNeve { get; set; }
|
|
|
|
//Egyelőre nincs rá szükség
|
|
//public int? OsszeTartozoCsoportId { get; set; }
|
|
//public string OsszeTartozoCsoportNev { get; set; }
|
|
public int? CsoportTipus { get; set; }
|
|
public int? EvfolyamTipusa { get; set; }
|
|
public int? CsoportvezetoId { get; set; }
|
|
public int FeladatEllatasiHelyId { get; set; }
|
|
public string FeladatEllatasiHelyName { get; set; }
|
|
public int? TeremID { get; set; }
|
|
public string Megjegyzes { get; set; }
|
|
public bool VegzosEvfolyamCsoport { get; set; }
|
|
public bool KeresztfelevesCsoport { get; set; }
|
|
public bool IsGyogypedagogiaiLogopediai { get; set; }
|
|
public bool TechnikaiCsoport { get; set; }
|
|
public int TanulokSzama { get; set; }
|
|
public string TanevNeve { get; set; }
|
|
public string CsoportvezetoNeve { get; set; }
|
|
public string TeremNev { get; set; }
|
|
|
|
public DateTime? CsoportNaploMegnyitasa { get; set; }
|
|
public DateTime? CsoportNaploLezarasa { get; set; }
|
|
public string CsoportNaploLeirasa { get; set; }
|
|
public string Naploszam { get; set; }
|
|
|
|
public int? OsztalyBontasId { get; set; }
|
|
public bool OsztalyBontas { get; set; }
|
|
public string OsztalyBontasNev { get; set; }
|
|
public int? TervezettLetszam { get; set; }
|
|
|
|
public bool IsAutoEgyeniCsoport { get; set; }
|
|
public int? MuveszetiAgId { get; set; }
|
|
public int? ZenemuveszetiAgTipusId { get; set; }
|
|
|
|
public bool OsszevontOsztaly { get; set; }
|
|
public bool HasTanuloBesorolas { get; set; }
|
|
public int? KepzesiFormaId { get; set; }
|
|
|
|
public bool Keresztfeleves { get; set; }
|
|
public int? SzakmaTipusId { get; set; }
|
|
public int? SzakmairanyTipusId { get; set; }
|
|
public string SzervezetNeve { get; set; }
|
|
public int? SzervezetId { get; set; }
|
|
public bool IsFromSzervezet { get; set; }
|
|
|
|
}
|
|
}
|