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 ReadPeopleIncome(DateTime? dateForm = null, DateTime? dateTo = null, int? peopleId = null, int? incomeId = null); void CreatePeopleIncome(PeopleIncome peopleIncome); void DeletPeopleIncome(int id); }