using GasStation.Entities; namespace GasStation.Repositories; public interface ISupplierRepository { IEnumerable ReadSupplier(); Supplier ReadSupplierByID(int id); void CreateSupplier(Supplier supplier); void UpdateSupplier(Supplier supplier); void DeleteSupplier(int id); }