Skip to content

Commit 593b8ae

Browse files
committed
Added new property to driver CanStartTOReview
1 parent 128d811 commit 593b8ae

File tree

4 files changed

+1178
-8
lines changed

4 files changed

+1178
-8
lines changed

CheckDrive.Api/CheckDrive.Domain/Entities/Driver.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
public class Driver : Employee
44
{
5-
public virtual ICollection<DoctorReview> Reviews { get; set; }
5+
public bool CanStartToReview { get; set; }
66

7+
public virtual ICollection<DoctorReview> Reviews { get; set; }
78
public Driver()
89
{
910
Reviews = new HashSet<DoctorReview>();

0 commit comments

Comments
 (0)