37 lines
604 B
C#
37 lines
604 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 IncomeRepository : IIncome
|
|
{
|
|
public void CreateIncome(Income income)
|
|
{
|
|
|
|
}
|
|
|
|
public void DeleteIncome(int id)
|
|
{
|
|
|
|
}
|
|
|
|
public IEnumerable<Income> ReadIncome()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public Income ReadIncomeById(int id)
|
|
{
|
|
return Income.CreateIncome(0, 0.0, 0);
|
|
}
|
|
|
|
public void UpdateIncome(Income income)
|
|
{
|
|
|
|
}
|
|
}
|