Files
School/Anul 2/Semestrul 2/ISS/Lab6/UBB-SE-2024-922-2/District3API/RepoInterfaces/RepoInterface.cs
T
2024-08-31 12:07:21 +03:00

12 lines
275 B
C#

namespace District3API.RepoInterfaces
{
public interface IRepoInterface<T>
{
public T GetById(int id);
public ICollection<T> GetAll();
public void Add(T item);
public void Update(T item);
public void Delete(int id);
}
}