init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
34
KretaWeb/Areas/Adminisztracio/Models/TanuloKIRImportModel.cs
Normal file
34
KretaWeb/Areas/Adminisztracio/Models/TanuloKIRImportModel.cs
Normal file
|
@ -0,0 +1,34 @@
|
|||
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<SelectListItem> FeladatellatasiHelyList { get; set; }
|
||||
|
||||
public List<SelectListItem> 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue