You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace Diligent.WebAPI.Data.Entities
  2. {
  3. public class Applicant
  4. {
  5. public enum TypesOfEmployment
  6. {
  7. Posao,
  8. Intership
  9. };
  10. public enum Genders
  11. {
  12. M,
  13. Z
  14. }
  15. public enum WorkHours { PartTime, FullTime };
  16. public int ApplicantId { get; set; }
  17. public string FirstName { get; set; }
  18. public string LastName { get; set; }
  19. public string Position { get; set; }
  20. public DateTime DateOfApplication { get; set; }
  21. public string CV { get; set; }
  22. public string Email { get; set; }
  23. public string PhoneNumber { get; set; }
  24. public string LinkedlnLink { get; set; }
  25. public string GithubLink { get; set; }
  26. public string BitBucketLink { get; set; }
  27. public int Experience { get; set; }
  28. public string ApplicationChannel { get; set; }
  29. public TypesOfEmployment TypeOfEmployment { get; set; }
  30. public Genders Gender { get; set; }
  31. public string ProfessionalQualification { get; set; }
  32. public List<TechnologyApplicant> TechnologyApplicants { get; set; }
  33. public List<Comment> Comments { get; set; }
  34. public List<Ad> Ads { get; set; }
  35. public List<SelectionProcess> SelectionProcesses { get; set; }
  36. }
  37. }