protected bool Equals(BookingRequest other)
 {
     return(_meetingDateTime.Equals(other._meetingDateTime) && SubmissionTime.Equals(other.SubmissionTime) && Equals(EmployeeId, other.EmployeeId) && MeetingDuration == other.MeetingDuration);
 }