18 lines
410 B
C#
18 lines
410 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 IPeople
|
|||
|
{
|
|||
|
IEnumerable<People> ReadPeople();
|
|||
|
People ReadPeopleById(int id);
|
|||
|
void CreatePeople(People people);
|
|||
|
void UpdatePeople(People people);
|
|||
|
void DeletePeople(int id);
|
|||
|
}
|