26 lines
516 B
C#
26 lines
516 B
C#
using ProjectRacing.Entities;
|
|
namespace ProjectRacing.Repositories.Implementations;
|
|
public class OwnerRepository : IOwnerRepository
|
|
{
|
|
public void CreateOwner(Owner owner)
|
|
{
|
|
|
|
}
|
|
public void DeleteOwner(int id)
|
|
{
|
|
|
|
}
|
|
public IEnumerable<Owner> GetOwners()
|
|
{
|
|
return [];
|
|
}
|
|
public Owner GetOwnerById(int id)
|
|
{
|
|
return Owner.CreateEntity(0, string.Empty, string.Empty, string.Empty);
|
|
}
|
|
public void UpdateOwner(int id)
|
|
{
|
|
|
|
}
|
|
}
|