23 lines
450 B
C#
23 lines
450 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();
|
|
}
|
|
}
|
|
} |