Fixed warnings with unnecessary usings and forgotten nulls!

This commit is contained in:
2024-08-13 22:05:10 +03:00
parent b424f0561e
commit e0f9a0f10f
3 changed files with 3 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ namespace Domains.ApplicantDomain
public Name Name { get; set; } = null!;
/// Passport of <see cref="Applicant"/>
public Passport Passport { get; set; }
public Passport Passport { get; set; } = null!;
/// Date of birth of the <see cref="Applicant"/>
public DateOnly BirthDate { get; set; }
@@ -42,7 +42,7 @@ namespace Domains.ApplicantDomain
public Name MotherName { get; set; } = null!;
/// Position of <see cref="Applicant"/>
public string JobTitle { get; set; }
public string JobTitle { get; set; } = null!;
/// Place of <see cref="Applicant"/>'s work
public PlaceOfWork PlaceOfWork { get; set; } = null!;