Exemplo n.º 1
0
 public void Add(T entity)
 {
     grannyContext.Set <T>().Add(entity);
 }
Exemplo n.º 2
0
 public Repository(IUnitOfWork unitOfWork)
 {
     grannyContext = unitOfWork.grannyContext;
     ObjectSet     = grannyContext.Set <T>();
 }