38 lines
861 B
C#
38 lines
861 B
C#
using GameModel;
|
|
using GameModel.Contract;
|
|
|
|
namespace GameData.Dummy
|
|
{
|
|
public class DummyExpenseRepository : IExpenseRepository
|
|
{
|
|
public DummyExpenseRepository()
|
|
{
|
|
|
|
}
|
|
|
|
public Task Delete(IEnumerable<PlayerExpense> enumerable)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IEnumerable<Expense> GetAll()
|
|
{
|
|
return IExpenseRepository.TestData;
|
|
}
|
|
|
|
public void Save(PlayerExpense data)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
Task<IEnumerable<Expense>> IExpenseRepository.GetAll()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
Task<PlayerExpense> IExpenseRepository.Save(PlayerExpense data)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |