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

17 lines
314 B
C#

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