Example #1
0
 public void Delete(ProductsGames productsGames)
 {
     try
     {
         _productsgamesdal.Delete(productsGames);
     }
     catch (Exception)
     {
         throw new Exception("Silme işlemi gerçekleştirilemedi");
     }
 }
Example #2
0
 public void Update(ProductsGames productsGames)
 {
     ValidationTool.Validate(new ProductsGamesValidator(), productsGames);
     _productsgamesdal.Update(productsGames);
 }