kreta/KretaWeb/Areas/Hianyzas/Models/Mulasztasok/MulasztasokNaploNezetGridModel.cs
2024-03-13 00:33:46 +01:00

135 lines
3.7 KiB
C#

using Kreta.BusinessLogic.Interfaces;
using Kreta.Web.Attributes;
namespace Kreta.Web.Areas.Hianyzas.Models.Mulasztasok
{
public class MulasztasokNaploNezetGridModel : IKretaIdentity
{
public string ID { get; set; }
#region TanuloNev + Tooltip
public int TanuloId { get; set; }
[KretaDisplayName(455)] /*Tanuló neve*/
public string TanuloNev { get; set; }
public string OsztalyNev { get; set; }
public string AnyjaNeve { get; set; }
public string SzuletesiIdoFormatted { get; set; }
#endregion TanuloNev + Tooltip
#region Mulasztások
[KretaDisplayName(1723)] /*Igazolt?*/
public string Igazolt { get; set; }
[KretaDisplayName(1723)] /*Igazolt?*/
public bool? Igazolt_BOOL { get; set; }
[KretaDisplayName(1723)] /*Igazolt?*/
public string Igazolt_BNAME { get; set; }
[KretaDisplayName(485)] /*Igazolás típusa*/
public int? IgazolasTipus { get; set; }
[KretaDisplayName(485)] /*Igazolás típusa*/
public string IgazolasTipus_DNAME { get; set; }
public bool Valid { get; set; }
[KretaDisplayName(97)] /*Megjegyzés*/
public string Megjegyzes { get; set; }
#endregion Mulasztások
public string OraMinusz2Column { get; set; }
public string OraMinusz1Column { get; set; }
public string Ora0Column { get; set; }
public string Ora1Column { get; set; }
public string Ora2Column { get; set; }
public string Ora3Column { get; set; }
public string Ora4Column { get; set; }
public string Ora5Column { get; set; }
public string Ora6Column { get; set; }
public string Ora7Column { get; set; }
public string Ora8Column { get; set; }
public string Ora9Column { get; set; }
public string Ora10Column { get; set; }
public string Ora11Column { get; set; }
public string Ora12Column { get; set; }
public string Ora13Column { get; set; }
public string Ora14Column { get; set; }
public string Ora15Column { get; set; }
public string Ora16Column { get; set; }
public string Ora17Column { get; set; }
public string Ora18Column { get; set; }
public string Ora19Column { get; set; }
public string Ora20Column { get; set; }
public string Ora21Column { get; set; }
public string Ora22Column { get; set; }
public string Ora23Column { get; set; }
public string Ora24Column { get; set; }
public string Foglalkozas1Column { get; set; }
public string Foglalkozas2Column { get; set; }
public string Foglalkozas3Column { get; set; }
public string Foglalkozas4Column { get; set; }
public string Foglalkozas5Column { get; set; }
public string Foglalkozas6Column { get; set; }
public string Foglalkozas7Column { get; set; }
public string Foglalkozas8Column { get; set; }
public string Foglalkozas9Column { get; set; }
public string Foglalkozas10Column { get; set; }
public string Foglalkozas11Column { get; set; }
public string Foglalkozas12Column { get; set; }
public string Foglalkozas13Column { get; set; }
public string Foglalkozas14Column { get; set; }
public string Foglalkozas15Column { get; set; }
public string Foglalkozas16Column { get; set; }
public string Foglalkozas17Column { get; set; }
public string Foglalkozas18Column { get; set; }
public string Foglalkozas19Column { get; set; }
public string Foglalkozas20Column { get; set; }
}
}