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

View File

@@ -0,0 +1,8 @@
namespace Kreta.Web.Areas.LEPModul.Models
{
public class DeleteModel
{
public string eloadasId { get; set; }
public int osztalyId { get; set; }
}
}

View File

@@ -0,0 +1,22 @@
using System;
namespace Kreta.Web.Areas.LEPModul.Models
{
public class EloadasTanuloSaveModel
{
public string eloadasId { get; set; }
public int kiseroSzam { get; set; }
public string[] tanuIds { get; set; }
public string[] osztalyIds { get; set; }
public string szervNev { get; set; }
public string eloadasNev { get; set; }
public DateTime idopont { get; set; }
public DateTime kezdete { get; set; }
public DateTime vege { get; set; }
public string FerohelyFoglaltHelyek { get; set; }
public int TanuloLetszam { get; set; }
public int KiseroLetszam { get; set; }
public int? TanuloLetszamFennmarado { get; set; }
public int? KiseroLetszamFennmarado { get; set; }
}
}

View File

@@ -0,0 +1,44 @@
using System;
using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.LEPModul.Models
{
public class EloadasokDetailGridModel : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(OsztalyCsoportResource.TanuloNeve), ResourceType = typeof(OsztalyCsoportResource))]
public string TanuloNev { get; set; }
[Display(Name = nameof(OsztalyCsoportResource.Osztaly), ResourceType = typeof(OsztalyCsoportResource))]
public string OsztalyCsoportNev { get; set; }
public int TanuloId { get; set; }
public int OsztalyCsoportId { get; set; }
public int EvfolyamId { get; set; }
public string Megjelent { get; set; }
public DateTime? Datum { get; set; }
public string SzervezetNev { get; set; }
public string EloadasNev { get; set; }
[Display(Name = nameof(TanuloResource.OktatasiAzonosito), ResourceType = typeof(TanuloResource))]
public string TanuloOktAzon { get; set; }
[Display(Name = nameof(CommonResource.OMAzonosito), ResourceType = typeof(CommonResource))]
public string IntezmenyAzon { get; set; }
[Display(Name = nameof(CommonResource.IntezmenyHivatalosNev), ResourceType = typeof(CommonResource))]
public string IntezmenyNev { get; set; }
[Display(Name = nameof(EloadasokResource.GondviseloElfogadas), ResourceType = typeof(EloadasokResource))]
public string GondviseloElfogadas { get; set; }
}
}

View File

@@ -0,0 +1,46 @@
using System;
using System.ComponentModel.DataAnnotations;
using Kreta.Resources;
namespace Kreta.Web.Areas.LEPModul.Models
{
public class EloadasokDetailModel
{
public string ID { get; set; }
public bool IsMindenEvfolyamJog { get; set; }
public int EvFolyamId { get; set; }
public int? KiseroSzam { get; set; }
public DateTime? Datum { get; set; }
public DateTime? EloadasKezdete { get; set; }
public DateTime? EloadasVege { get; set; }
public string SzervezetNev { get; set; }
public string EloadasNev { get; set; }
public string Helyszin { get; set; }
[Display(Name = nameof(EloadasokResource.TanulokListaja), ResourceType = typeof(EloadasokResource))]
public string[] TanuloIds { get; set; }
public string EvfolyamIdList { get; set; }
public string FerohelyFoglaltHelyek { get; set; }
public int TanuloLetszam { get; set; }
public int KiseroLetszam { get; set; }
public int? TanuloLetszamFennmarado { get; set; }
public int? KiseroLetszamFennmarado { get; set; }
public bool IsToroltJelentkezes { get; set; }
}
}

View File

@@ -0,0 +1,53 @@
using System;
using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.LEPModul.Models
{
public class EloadasokGridModel : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(EloadasokResource.Helyszin), ResourceType = typeof(EloadasokResource))]
public string Helyszin { get; set; }
[Display(Name = nameof(EloadasokResource.Datum), ResourceType = typeof(EloadasokResource))]
public DateTime? Datum { get; set; }
[Display(Name = nameof(EloadasokResource.EloadasKezdete), ResourceType = typeof(EloadasokResource))]
public DateTime? EloadasKezdete { get; set; }
[Display(Name = nameof(EloadasokResource.EloadasVege), ResourceType = typeof(EloadasokResource))]
public DateTime? EloadasVege { get; set; }
[Display(Name = nameof(EloadasokResource.SzervezetNev), ResourceType = typeof(EloadasokResource))]
public string SzervezetNev { get; set; }
[Display(Name = nameof(EloadasokResource.EloadasNev), ResourceType = typeof(EloadasokResource))]
public string EloadasNev { get; set; }
[Display(Name = nameof(EloadasokResource.FerohelyFoglaltHelyek), ResourceType = typeof(EloadasokResource))]
public string FerohelyFoglaltHelyek { get; set; }
[Display(Name = nameof(EloadasokResource.EvFolyam), ResourceType = typeof(EloadasokResource))]
public string EvFolyamIdList { get; set; }
public int EvFolyamId { get; set; }
[Display(Name = nameof(EloadasokResource.JelentkezesElfogadas), ResourceType = typeof(EloadasokResource))]
public string GondviseloElfogadas { get; set; }
[Display(Name = nameof(EloadasokResource.Leiras), ResourceType = typeof(EloadasokResource))]
public string Leiras { get; set; }
[Display(Name = nameof(EloadasokResource.Megjelent), ResourceType = typeof(EloadasokResource))]
public string Megjelent { get; set; }
public int KiseroLetszam { get; set; }
public int TanuloLetszam { get; set; }
public int? TanuloLetszamFennmarado { get; set; }
public int? KiseroLetszamFennmarado { get; set; }
public bool IsToroltJelentkezes { get; set; }
}
}

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
using Kreta.Resources;
namespace Kreta.Web.Areas.LEPModul.Models
{
public class EloadasokSearchModel
{
[Display(Name = nameof(EloadasokResource.Helyszin), ResourceType = typeof(EloadasokResource))]
public string Helyszin { get; set; }
[Display(Name = nameof(EloadasokResource.EloadasIdoszak), ResourceType = typeof(EloadasokResource))]
public DateTime? IdoszakKezdete { get; set; }
public DateTime? IdoszakVege { get; set; }
[Display(Name = nameof(EloadasokResource.EloadasNev), ResourceType = typeof(EloadasokResource))]
public string EloadasNev { get; set; }
[Display(Name = nameof(EloadasokResource.EvFolyam), ResourceType = typeof(EloadasokResource))]
public int? EvfolyamID { get; set; }
[Display(Name = nameof(EloadasokResource.SzervezetNev), ResourceType = typeof(EloadasokResource))]
public string SzervezetNev { get; set; }
[Display(Name = nameof(EloadasokResource.EloadasKezdete), ResourceType = typeof(EloadasokResource))]
public DateTime? IdoszakKezdeteTime { get; set; }
[Display(Name = nameof(EloadasokResource.EloadasVege), ResourceType = typeof(EloadasokResource))]
public DateTime? IdoszakVegeTime { get; set; }
public bool IsMindenEvfolyamJog { get; set; }
public List<int> EvfolyamIdList { get; set; }
public int TanevSorszam { get; set; }
public string IntezmenyAzonosito { get; set; }
public List<SelectListItem> GondviseloElfogadasList { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace Kreta.Web.Areas.LEPModul.Models
{
public class GVEngedelyModel
{
public string eloadasId { get; set; }
public int tanuloId { get; set; }
public bool? engedelyezve { get; set; }
}
}

View File

@@ -0,0 +1,12 @@
using System;
namespace Kreta.Web.Areas.LEPModul.Models
{
public class MegjelentDataModel
{
public int EloadasId { get; set; }
public DateTime EloadasDatum { get; set; }
public int? Id { get; set; }
public string Megjelent { get; set; }
}
}