18 lines
410 B
C#

using ProjectFamilyBudget.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectFamilyBudget.Repositories;
public interface IIncome
{
IEnumerable<Income> ReadIncome();
Income ReadIncomeById(int id);
void CreateIncome(Income income);
void UpdateIncome(Income income);
void DeleteIncome(int id);
}