38 lines
704 B
C#
38 lines
704 B
C#
using ProjectFamilyBudget.Entities;
|
|
using ProjectFamilyBudget.Entities.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectFamilyBudget.Repositories.Implementations;
|
|
|
|
public class ExpenseRepository : IExpense
|
|
{
|
|
public void CreateExpense(Expense expense)
|
|
{
|
|
|
|
}
|
|
|
|
public void DeleteExpense(int id)
|
|
{
|
|
|
|
}
|
|
|
|
public IEnumerable<Expense> ReadExpense()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public Expense ReadExpenseById(int id)
|
|
{
|
|
return Expense.CreateEntity(0, IncomeExpenseType.None, string.Empty, string.Empty);
|
|
}
|
|
|
|
public void UpdateExpense(Expense expense)
|
|
{
|
|
|
|
}
|
|
}
|