18 lines
437 B
C#
18 lines
437 B
C#
|
using ProjectFuel.Entities;
|
|||
|
using ProjectFuel.Entities;
|
|||
|
using ProjectFuel.Repositories;
|
|||
|
|
|||
|
namespace ProjectFuel.Repositories.Implementations;
|
|||
|
|
|||
|
public class RefillRepository : IRefillRepository
|
|||
|
{
|
|||
|
public void CreateRefill(Refill refill)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<Refill> ReadRefills(DateTime? dateFrom = null, DateTime? dateTo = null, int? fuelId = null, int? carId = null)
|
|||
|
{
|
|||
|
return new List<Refill>();
|
|||
|
}
|
|||
|
}
|