mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
27 lines
612 B
C#
27 lines
612 B
C#
|
using System;
|
|||
|
using System.Collections.ObjectModel;
|
|||
|
using TINK.Model.Bike;
|
|||
|
|
|||
|
using BikeInfoMutable = TINK.Model.Bike.BC.BikeInfoMutable;
|
|||
|
|
|||
|
namespace TestTINKLib.Mocks.Bike
|
|||
|
{
|
|||
|
public class BikeCollectionMock : Collection<BikeInfoMutable>, IBikeDictionaryMutable<BikeInfoMutable>
|
|||
|
{
|
|||
|
public BikeInfoMutable GetById(string id)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
public void RemoveById(string id)
|
|||
|
{
|
|||
|
throw new NotSupportedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool ContainsKey(string id)
|
|||
|
{
|
|||
|
throw new NotSupportedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|