using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; using Kreta.Resources; using Kreta.Web.Attributes; using Kreta.Web.Models; namespace Kreta.Web.Areas.Adminisztracio.Models { public class TanuloKIRImportModel : UploadFileModel { [KretaDisplayName(450)] /*Tanév*/ //[KretaRequired(StringResourcesId = 3823)] public int? TanevId { get; set; } [KretaDisplayName(90)] /*Feladatellátási hely*/ //[KretaRequired(StringResourcesId = 1680)] public int? FeladatellatasiHelyId { get; set; } public List FeladatellatasiHelyList { get; set; } public List TanevLista { get; set; } public KIRLoginModel KirLoginModel { get; set; } public KIRImportModel KIRImportModel { get; set; } public bool KIRImportEnabled { get; set; } [Display(Name = nameof(AdminisztracioResource.ImportalasUtanMindenJuttatasAdatUjraszamitasa), ResourceType = typeof(AdminisztracioResource))] public bool? IsJuttatasUpdate { get; set; } = false; public bool IsSzakkepzoIntezmeny { get; set; } } }