16 lines
472 B
C#
16 lines
472 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 IPeopleIncome
|
|
{
|
|
IEnumerable<PeopleIncome> ReadPeopleIncome(DateTime? dateForm = null, DateTime? dateTo = null, int? peopleId = null, int? incomeId = null);
|
|
void CreatePeopleIncome(PeopleIncome peopleIncome);
|
|
void DeletPeopleIncome(int id);
|
|
}
|