Пример #1
0
 internal void RemovePendingResponse(DriverProfileResponseModel response)
 {
     _pendingResponses.ModifyCollection(col => col.Remove(response));
 }
Пример #2
0
 internal void RemoveCurrentResponse(DriverProfileResponseModel response)
 {
     _currentResponses.ModifyCollection(col => col.Remove(response));
 }
Пример #3
0
 internal void AddPendingResponse(DriverProfileResponseModel response)
 {
     _pendingResponses.ModifyCollection(col => col.Add(response));
 }
Пример #4
0
 internal void AddCurrentResponse(DriverProfileResponseModel response)
 {
     _currentResponses.ModifyCollection(col => col.Add(response));
 }