sharee.bike-App/TestTINKLib/Mocks/Bike/BikeCollectionMock.cs
Anja Müller-Meißner 573fe77e12 Version 3.0.337
2022-08-30 15:42:25 +02:00

27 lines
625 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();
}
}
}