- Ajout d'une classe et d'une interface Repo génériques pour éviter la réécriture des fonctions CRUD de base
13 lines
287 B
C#
13 lines
287 B
C#
using ldap_cesi.Context;
|
|
using ldap_cesi.Entities;
|
|
using ldap_cesi.Repository.Services;
|
|
|
|
namespace ldap_cesi.Repository;
|
|
|
|
public class ServiceRepository : RepositoryBase<Service>, IRepositoryService
|
|
{
|
|
public ServiceRepository(PgContext context) : base(context)
|
|
{
|
|
|
|
}
|
|
} |