37 lines
615 B
C#
37 lines
615 B
C#
|
using ProjectFamilyBudget.Entities;
|
|||
|
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.CreateExpense(0,0,0);
|
|||
|
}
|
|||
|
|
|||
|
public void UpdateExpense(Expense expense)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|