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 ReadPeople(); People ReadPeopleById(int id); void CreatePeople(People people); void UpdatePeople(People people); void DeletePeople(int id); }