Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ApplicantViewDto.cs 1.2KB

1234567891011121314151617181920212223242526272829
  1. using Diligent.WebAPI.Contracts.DTOs.Ad;
  2. using Diligent.WebAPI.Contracts.DTOs.Comment;
  3. using Diligent.WebAPI.Contracts.DTOs.SelectionProcess;
  4. using Diligent.WebAPI.Contracts.DTOs.Technology;
  5. namespace Diligent.WebAPI.Contracts.DTOs.Applicant
  6. {
  7. public class ApplicantViewDto
  8. {
  9. public int ApplicantId { get; set; }
  10. public string FirstName { get; set; }
  11. public string LastName { get; set; }
  12. public string Position { get; set; }
  13. public DateTime DateOfApplication { get; set; }
  14. public string CV { get; set; }
  15. public string Email { get; set; }
  16. public string PhoneNumber { get; set; }
  17. public string LinkedlnLink { get; set; }
  18. public string GithubLink { get; set; }
  19. public string BitBucketLink { get; set; }
  20. public int Experience { get; set; }
  21. public string ApplicationChannel { get; set; }
  22. public string TypeOfEmployment { get; set; }
  23. public List<TechnologyViewDto> TechnologyApplicants { get; set; } = new();
  24. public List<CommentViewDto> Comments { get; set; }
  25. public List<AdResponseDto> Ads { get; set; }
  26. public List<SelectionProcessResposneWithoutApplicantDto> SelectionProcesses { get; set; }
  27. }
  28. }