sharee.bike-App/TestTINKLib/Mocks/Bike/BikeCollectionMock.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

27 lines
535 B
C#

using System;
using System.Collections.ObjectModel;
using TINK.Model.Bikes;
using BikeInfoMutable = TINK.Model.Bikes.BikeInfoNS.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();
}
}
}