mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-22 15:20:27 +01:00
29 lines
773 B
C#
29 lines
773 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using RSystem.DAL;
|
|||
|
|
|||
|
namespace RSystem.Models
|
|||
|
{
|
|||
|
public class Recruit
|
|||
|
{
|
|||
|
public int RecruitId { get; set; }
|
|||
|
|
|||
|
public string ApplicationUserId { get; set; }
|
|||
|
public ApplicationUser ApplicationUser { get; set; }
|
|||
|
|
|||
|
public ICollection<MaturaResult> MaturaResults { get; set; }
|
|||
|
|
|||
|
public MaturaType MaturaType { get; set; }
|
|||
|
|
|||
|
public string MaturaNumber { get; set; }
|
|||
|
public DateTime DateOfPass { get; set; }
|
|||
|
|
|||
|
public RecruitData RecriutData { get; set; }
|
|||
|
public ICollection<RecruitPreference> RecruitPreferences { get; set; }
|
|||
|
|
|||
|
public Specialization AcceptedSpecialization { get; set; }
|
|||
|
}
|
|||
|
}
|