internal void RemovePendingResponse(DriverProfileResponseModel response)
 {
     _pendingResponses.ModifyCollection(col => col.Remove(response));
 }
 internal void RemoveCurrentResponse(DriverProfileResponseModel response)
 {
     _currentResponses.ModifyCollection(col => col.Remove(response));
 }
 internal void AddPendingResponse(DriverProfileResponseModel response)
 {
     _pendingResponses.ModifyCollection(col => col.Add(response));
 }
 internal void AddCurrentResponse(DriverProfileResponseModel response)
 {
     _currentResponses.ModifyCollection(col => col.Add(response));
 }