public void DeleteGenderOfProduct(GenderOfProduct gendersOfProduct)
 {
     if (gendersOfProduct == null)
     {
         throw new ArgumentNullException(nameof(gendersOfProduct));
     }
     _context.GendersOfProducts.Remove(gendersOfProduct);
 }
 public void UpdateGenderOfProduct(GenderOfProduct gendersOfProduct)
 {
     //Nothing
 }