init
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Web.Mvc;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.Adminisztracio.Models
|
||||
{
|
||||
public class TanarokFeltolteseModel
|
||||
{
|
||||
|
||||
public TanarokFeltolteseModel()
|
||||
{
|
||||
FeladatellatasiHelyList = new List<SelectListItem>();
|
||||
TanevList = new List<SelectListItem>();
|
||||
Errors = new List<string>();
|
||||
}
|
||||
|
||||
[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> TanevList { get; set; }
|
||||
|
||||
public List<SelectListItem> FeladatellatasiHelyList { get; set; }
|
||||
|
||||
public List<string> Errors { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user