Compare commits
2 Commits
dee8c90319
...
3b5a735abf
| Author | SHA1 | Date |
|---|---|---|
|
|
3b5a735abf | |
|
|
e00f8b3549 |
|
|
@ -232,7 +232,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
{
|
{
|
||||||
public string EmailOrPhone { get; set; }
|
public string EmailOrPhone { get; set; }
|
||||||
|
|
||||||
public Guid TrialId { get; set; }
|
public Guid? TrialId { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class VerifyEmialGetDoctorInfoInDto
|
public class VerifyEmialGetDoctorInfoInDto
|
||||||
|
|
|
||||||
|
|
@ -170,7 +170,8 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
AcceptingNewTrial = false,
|
AcceptingNewTrial = false,
|
||||||
ActivelyReading = false,
|
ActivelyReading = false,
|
||||||
ResumeStatus = ResumeStatusEnum.Pass,
|
ResumeStatus = ResumeStatusEnum.Pass,
|
||||||
CooperateStatus = ContractorStatusEnum.Noncooperation,
|
CooperateStatus = inDto.TrialId==null? ContractorStatusEnum.Noncooperation: ContractorStatusEnum.Cooperation,
|
||||||
|
,
|
||||||
|
|
||||||
ReviewStatus = ReviewerInformationConfirmStatus.ConfirmRefuse
|
ReviewStatus = ReviewerInformationConfirmStatus.ConfirmRefuse
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue