37 lines
613 B
C#
37 lines
613 B
C#
using ProjectFamilyBudget.Entities;
|
|
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.CreatePeople(0, string.Empty, 0);
|
|
}
|
|
|
|
public IEnumerable<People> ReadPeople()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public void UpdatePeople(People people)
|
|
{
|
|
|
|
}
|
|
}
|