12 lines
303 B
C#
12 lines
303 B
C#
|
using ProjectFuel.Entities;
|
|||
|
using ProjectFuel.Entities;
|
|||
|
|
|||
|
namespace ProjectFuel.Repositories;
|
|||
|
|
|||
|
public interface IRefillRepository
|
|||
|
{
|
|||
|
IEnumerable<Refill> ReadRefills(DateTime? dateFrom = null, DateTime? dateTo = null, int? fuelId = null, int? carId = null);
|
|||
|
|
|||
|
void CreateRefill(Refill refill);
|
|||
|
}
|