16 lines
472 B
C#
Raw Normal View History

2024-11-05 17:54:04 +04:00
using ProjectFamilyBudget.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectFamilyBudget.Repositories;
public interface IPeopleIncome
{
IEnumerable<PeopleIncome> ReadPeopleIncome(DateTime? dateForm = null, DateTime? dateTo = null, int? peopleId = null, int? incomeId = null);
void CreatePeopleIncome(PeopleIncome peopleIncome);
void DeletPeopleIncome(int id);
}