public Task UpdateAsync(ICollection <Product> products)
 {
     _dbContext.UpdateRange(products);
     return(_dbContext.SaveChangesAsync());
 }