28 lines
589 B
C#
28 lines
589 B
C#
using ProjectGarage.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectGarage.Repositories.Implementations;
|
|
|
|
public class DriverRepository : IDriverRepository
|
|
{
|
|
public void CreateDriver(Driver driver)
|
|
{
|
|
}
|
|
|
|
public void DeleteDriver(int id)
|
|
{
|
|
}
|
|
|
|
public Driver ReadDriverByID(int id) => Driver.CreateDriver(0, string.Empty, string.Empty, string.Empty, 0);
|
|
|
|
public IEnumerable<Driver> ReadDrivers() => [];
|
|
|
|
public void UpdateDriver(Driver driver)
|
|
{
|
|
}
|
|
}
|