using GasStation.Entities; namespace GasStation.Repositories; public interface IGasmanRepository { IEnumerable ReadGasman(); Gasman ReadGasmanByID(int id); void CreateGasman(Gasman gasman); void UpdateGasman(Gasman gasman); void DeleteGasman(int id); }