29 lines
600 B
C#
29 lines
600 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 PeopleIncomeRepository : IPeopleIncome
|
|||
|
{
|
|||
|
public IEnumerable<PeopleIncome> ReadPeopleIncome(DateTime? dateForm = null, DateTime? dateTo = null, int? peopleId = null, int? incomeId = null)
|
|||
|
{
|
|||
|
return [];
|
|||
|
}
|
|||
|
public void CreatePeopleIncome(PeopleIncome peopleIncome)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public void DeletPeopleIncome(int id)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|