| 12345678910111213141516171819202122232425262728293031323334353637 |
- namespace Diligent.WebAPI.Data.Entities
- {
- public class Applicant
- {
- public enum TypesOfEmployment
- {
- Posao,
- Intership
- };
- public enum Genders
- {
- M,
- Z
- }
- public enum WorkHours { PartTime, FullTime };
- public int ApplicantId { get; set; }
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public string Position { get; set; }
- public DateTime DateOfApplication { get; set; }
- public string CV { get; set; }
- public string Email { get; set; }
- public string PhoneNumber { get; set; }
- public string LinkedlnLink { get; set; }
- public string GithubLink { get; set; }
- public string BitBucketLink { get; set; }
- public int Experience { get; set; }
- public string ApplicationChannel { get; set; }
- public TypesOfEmployment TypeOfEmployment { get; set; }
- public Genders Gender { get; set; }
- public string ProfessionalQualification { get; set; }
- public List<TechnologyApplicant> TechnologyApplicants { get; set; }
- public List<Comment> Comments { get; set; }
- public List<Ad> Ads { get; set; }
- public List<SelectionProcess> SelectionProcesses { get; set; }
- }
- }
|