public BaseRepository(WG2RContext context, DbSet <T> entity)
 {
     _entity  = entity;
     _context = context;
 }
 public TelefoneRepository(DbSet <Telefone> entity, WG2RContext context)
     : base(context, context.Telefones)
 {
 }
示例#3
0
 public PessoaFisicaRepository(DbSet <PessoaFisica> entity, WG2RContext context)
     : base(context, entity)
 {
 }