Example #1
0
 public static void DeleteAccesos(Familia _object)
 {
     try
     {
         FamiliaFacade.DeleteAccesos(_object);
     }
     catch (ExceptionBLL bllex)
     {
         throw new ExceptionBLL(bllex, bllex.Message);
     }
 }
Example #2
0
 /// <summary>
 /// elimina los accesos de una familia
 /// </summary>
 /// <param name="_object">familia</param>
 public static void DeleteAccesos(Entities.UFP.Familia _object)
 {
     try
     {
         FamiliaFacade.DeleteAccesos(_object);
     }
     catch (Exception ex)
     {
         //GestorErrores.Execute(ex);
         throw;
     }
 }