28 lines
592 B
C#
28 lines
592 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(PlayerExpense data)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
Task<PlayerExpense> IExpenseRepository.Save(PlayerExpense data)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |