16 lines
361 B
C#
16 lines
361 B
C#
using back.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace back.Infra
|
|
{
|
|
public class PersonaRepository : BaseRepository<Persona>
|
|
{
|
|
public PersonaRepository(Application_Db_Context _context, IDbContextFactory<Application_Db_Context> _dbContextFactory) : base(_dbContextFactory, _context)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|