14 lines
363 B
C#
14 lines
363 B
C#
using back.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace back.Infra
|
|
{
|
|
public class DireccionRepository : BaseRepository<Direccion>
|
|
{
|
|
|
|
public DireccionRepository(Application_Db_Context _context, IDbContextFactory<Application_Db_Context> _dbContextFactory) : base(_dbContextFactory, _context)
|
|
{
|
|
}
|
|
}
|
|
}
|