ISEbd-22_Rozhkov.I.E._Simple/GasStation/Repositories/IGasmanRepository.cs
2024-11-13 23:20:06 +04:00

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);
}