27 lines
595 B
C#
27 lines
595 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 PeopleExpenseRepository : IPeopleExpense
|
|
{
|
|
public IEnumerable<PeopleExpense> ReadPeopleExpense(DateTime? dateForm = null, DateTime? dateTo = null, int? peopleId = null, int? expenseId = null)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public void CreatePeopleExpense(PeopleExpense peopleExpense)
|
|
{
|
|
|
|
}
|
|
|
|
public void DeletPeopleExpense(int id)
|
|
{
|
|
|
|
}
|
|
}
|