Пример #1
0
 public bool CheckExist(int productId, int sizeId, int colorId)
 {
     return(_productQuantityRepository.CheckContains(x => x.ProductId == productId && x.ColorId == colorId && x.SizeId == sizeId));
 }