16 lines
480 B
C#
16 lines
480 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 IPeopleExpense
|
|||
|
{
|
|||
|
IEnumerable<PeopleExpense> ReadPeopleExpense(DateTime? dateForm = null, DateTime? dateTo = null, int? peopleId = null, int? expenseId = null);
|
|||
|
void CreatePeopleExpense(PeopleExpense peopleExpense);
|
|||
|
void DeletPeopleExpense(int id);
|
|||
|
}
|