10 lines
369 B
C#
10 lines
369 B
C#
using back.DataModels;
|
|
using back.persistance.data.repositories.Abstracts;
|
|
using MCVIngenieros.Transactional.Implementations.EntityFramework;
|
|
|
|
namespace back.persistance.data.repositories;
|
|
|
|
public class PersonRepository(DataContext context) : ReadWriteRepository<Person>(context), IPersonRepository
|
|
{
|
|
// Implement methods specific to Photo repository if needed
|
|
} |