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