38 lines
734 B
C#
38 lines
734 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 IncomeRepository : IIncome
|
|
{
|
|
public void CreateIncome(Income income)
|
|
{
|
|
|
|
}
|
|
|
|
public void DeleteIncome(int id)
|
|
{
|
|
|
|
}
|
|
|
|
public IEnumerable<Income> ReadIncome()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public Income ReadIncomeById(int id)
|
|
{
|
|
return Income.CreateEntity(0, IncomeExpenseType.None, string.Empty, string.Empty);
|
|
}
|
|
|
|
public void UpdateIncome(Income income)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|