38 lines
692 B
C#
38 lines
692 B
C#
using ProjectFamilyBudget.Entities;
|
|
using ProjectFamilyBudget.Entities.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectFamilyBudget.Repositories.Implementations;
|
|
|
|
public class PeopleRepository : IPeople
|
|
{
|
|
public void CreatePeople(People people)
|
|
{
|
|
|
|
}
|
|
|
|
public void DeletePeople(int id)
|
|
{
|
|
|
|
}
|
|
|
|
public People ReadPeopleById(int id)
|
|
{
|
|
return People.CreateEntity(0, string.Empty, string.Empty, 0, FamilyMemberType.None);
|
|
}
|
|
|
|
public IEnumerable<People> ReadPeople()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public void UpdatePeople(People people)
|
|
{
|
|
|
|
}
|
|
}
|