Exemplo n.º 1
0
 /// <summary>
 /// Calls the action to update an existing DVD.
 /// </summary>
 /// <param name="model"></param>
 private static void Update(DVD model)
 {
     try
     {
         DAL_DVD.Update(model);
     }
     catch (Exception)
     {
         throw;
     }
 }