浏览代码

fixing tests

pull/161/head
Dzenis Hadzifejzovic 3 年前
父节点
当前提交
dbec4dd652

+ 3
- 1
Diligent.WebAPI.Business/Services/ApplicantService.cs 查看文件

@@ -229,7 +229,9 @@ namespace Diligent.WebAPI.Business.Services
},
Ads = new List<Ad> { request.Ad },
SelectionProcesses = new(),
TechnologyApplicants = new()
TechnologyApplicants = new(),
Gender = Genders.M,
ProfessionalQualification = "Elektrotehnicki fakultet",
};
res.Add(applicant);
}

+ 0
- 2
Diligent.WebAPI.Contracts/DTOs/Applicant/ApplicantImporteDto.cs 查看文件

@@ -16,8 +16,6 @@
public string ApplicationChannel { get; set; }
public string TypeOfEmployment { get; set; }
public string Comment { get; set; }
public string Gender { get; set; }
public string ProfessionalQualification { get; set; }
public Diligent.WebAPI.Data.Entities.Ad Ad { get; set; }
}
}

+ 1
- 3
Diligent.WebAPI.Tests/Services/ApplicantServiceTests.cs 查看文件

@@ -299,9 +299,7 @@ namespace Diligent.WebAPI.Tests.Services
LinkedlnLink = "",
PhoneNumber = "2321312",
Position = "some position",
TypeOfEmployment = "Intership",
Gender = "Muski",
ProfessionalQualification = "Elektrotehnicki fakultet"
TypeOfEmployment = "Intership"
}
});


正在加载...
取消
保存