init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
27
KretaWeb/Areas/Adminisztracio/Models/TanarKIRImportModel.cs
Normal file
27
KretaWeb/Areas/Adminisztracio/Models/TanarKIRImportModel.cs
Normal file
|
@ -0,0 +1,27 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Web.Mvc;
|
||||
using Kreta.Web.Attributes;
|
||||
using Kreta.Web.Models;
|
||||
|
||||
namespace Kreta.Web.Areas.Adminisztracio.Models
|
||||
{
|
||||
public class TanarKIRImportModel : UploadFileModel
|
||||
{
|
||||
[KretaDisplayName(450)] /*Tanév*/
|
||||
//[KretaRequired(StringResourcesId = 3823)]
|
||||
public int? TanevId { get; set; }
|
||||
|
||||
[KretaDisplayName(90)] /*Feladatellátási hely*/
|
||||
//[KretaRequired(StringResourcesId = 4920)]
|
||||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue