17 lines
290 B
C#
17 lines
290 B
C#
using GasStation.Entities;
|
|
|
|
namespace GasStation.Repositories;
|
|
|
|
public interface IGasmanRepository
|
|
{
|
|
IEnumerable<Gasman> ReadGasman();
|
|
|
|
Gasman ReadGasmanByID(int id);
|
|
|
|
void CreateGasman(Gasman gasman);
|
|
|
|
void UpdateGasman(Gasman gasman);
|
|
|
|
void DeleteGasman(int id);
|
|
}
|