Files
2025-05-01 15:18:30 +03:00

12 lines
275 B
C#

namespace ConstructorApp.BusinessLayer.Abstract
{
public interface IGenericService<T> where T : class
{
void TAdd(T entity);
void TDelete(T entity);
void TUpdate(T entity);
T TGetByID(int id);
List<T> TGetListAll();
}
}