1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-12-01 17:25:27 +01:00
RSystem-MVC-Fork/RSystem/Areas/Recruit/Models/EducationViewModel.cs
2018-04-17 11:20:49 +02:00

22 lines
695 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
using RSystem.Models;
namespace RSystem.ViewModels
{
public class EducationViewModel
{
public MaturaResult[] MaturaResults { get; set; }
public MaturaType MaturaType { get; set; }
[Display(Name = "Data zdania matury")]
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
public DateTime DateOfPass { get; set; }
[Display(Name = "Numer zdanej matury")]
public string MaturaNumber { get; set; }
}
}