29 lines
631 B
C#
29 lines
631 B
C#
using ProjectGSM.Entities;
|
|
|
|
namespace ProjectGSM.Repositories.Implementations;
|
|
|
|
public class AdvocateRepository : IAdvocateRepository
|
|
{
|
|
public IEnumerable<Advocate> ReadAdvocates()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public Advocate ReadAdvocateById(int id)
|
|
{
|
|
return Advocate.CreateEntity(0, String.Empty, false, DateTime.UtcNow, 0, 0, 0, String.Empty, String.Empty,
|
|
String.Empty, Entities.Enums.LicenseType.None);
|
|
}
|
|
|
|
public void CreateAdvocate(Advocate advocate)
|
|
{
|
|
}
|
|
|
|
public void UpdateAdvocate(Advocate advocate)
|
|
{
|
|
}
|
|
|
|
public void DeleteAdvocate(int id)
|
|
{
|
|
}
|
|
} |