Exemplo n.º 1
0
 public T Get <T>(int id) where T : class
 {
     return(_context.Find <T>(id));
 }
Exemplo n.º 2
0
 public TEntity GetSingle(TKey id)
 {
     return(Db.Find <TEntity>(id));
 }