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 Guid TrialId { get; set; }
|
||||
public Guid? TrialId { get; set; }
|
||||
}
|
||||
|
||||
public class VerifyEmialGetDoctorInfoInDto
|
||||
|
|
|
|||
|
|
@ -170,7 +170,8 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
AcceptingNewTrial = false,
|
||||
ActivelyReading = false,
|
||||
ResumeStatus = ResumeStatusEnum.Pass,
|
||||
CooperateStatus = ContractorStatusEnum.Noncooperation,
|
||||
CooperateStatus = inDto.TrialId==null? ContractorStatusEnum.Noncooperation: ContractorStatusEnum.Cooperation,
|
||||
,
|
||||
|
||||
ReviewStatus = ReviewerInformationConfirmStatus.ConfirmRefuse
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue