29 lines
513 B
C#
29 lines
513 B
C#
|
using GasStation.Entities;
|
|||
|
|
|||
|
namespace GasStation.Repositories.Implementations;
|
|||
|
|
|||
|
public class SupplierRepository : ISupplierRepository
|
|||
|
{
|
|||
|
public void CreateSupplier(Supplier supplier)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void DeleteSupplier(int id)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public Supplier ReadSupplierByID(int id)
|
|||
|
{
|
|||
|
return Supplier.CreateSupplier(0, string.Empty);
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<Supplier> ReadSupplier()
|
|||
|
{
|
|||
|
return [];
|
|||
|
}
|
|||
|
|
|||
|
public void UpdateSupplier(Supplier supplier)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|