KoogleV4/GameData/Dummy/DummyExpenseRepository.cs

28 lines
577 B
C#

using GameModel;
using GameModel.Contract;
namespace GameData.Dummy
{
public class DummyExpenseRepository : IExpenseRepository
{
public DummyExpenseRepository()
{
}
public IEnumerable<Expense> GetAll()
{
return IExpenseRepository.TestData;
}
public void Save(MemberExpense data)
{
throw new NotImplementedException();
}
Task IExpenseRepository.Save(MemberExpense data)
{
throw new NotImplementedException();
}
}
}