public UnitOfWork()
 {
     this.context = new FrugtContext();
 }
 public Repository(FrugtContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
 public UnitOfWork(FrugtContext context)
 {
     this.context = context;
 }