Esempio n. 1
0
 private void ValidateAddItemCart(CartDto cart)
 {
     if (cart == null)
     {
         throw new Exception(ResourceConstantsExceptions.NotFound("Cart"));
     }
 }
Esempio n. 2
0
 private void ValidateAddItemProduct(ProductDto product)
 {
     if (product == null)
     {
         throw new Exception(ResourceConstantsExceptions.NotFound("Product"));
     }
 }
Esempio n. 3
0
 private void ValidateGetCategory(CategoryDto category)
 {
     if (category == null)
     {
         throw new Exception(ResourceConstantsExceptions.NotFound("Category"));
     }
 }