Esempio n. 1
0
 // Methods
 public static void Delete(Patente _object)
 {
     try
     {
         PatenteFacade.Delete(_object);
     }
     catch (ExceptionBLL bllex)
     {
         throw new ExceptionBLL(bllex, bllex.Message);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// llama a dal para eliminar una patente
 /// </summary>
 /// <param name="_object">patente</param>
 public static void Delete(Entities.UFP.Patente _object)
 {
     try
     {
         PatenteFacade.Delete(_object);
     }
     catch (Exception ex)
     {
         //GestorErrores.Execute(ex);
         throw;
     }
 }