// CONSTRUCTORS
 /// <summary>
 /// Initialize a new instance of <see cref="GenericRepository{TEntity}"/>
 /// </summary>
 /// <param name="context">Data context</param>
 public GenericRepository(Context.DataBaseContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }