using GameModel;
namespace GameModel.Contract
{
public interface IExpenseRepository
IEnumerable<Expense> GetAll();
}