Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Applicant.cs 1.1KB

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