2024-11-02 12:36:04 +04:00
|
|
|
|
using ProjectFamilyBudget.Entities;
|
2024-11-05 17:54:04 +04:00
|
|
|
|
using ProjectFamilyBudget.Entities.Enums;
|
2024-11-02 12:36:04 +04:00
|
|
|
|
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)
|
|
|
|
|
{
|
2024-11-05 17:54:04 +04:00
|
|
|
|
return People.CreateEntity(0, string.Empty, string.Empty, 0, FamilyMemberType.None);
|
2024-11-02 12:36:04 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<People> ReadPeople()
|
|
|
|
|
{
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdatePeople(People people)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|