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