public static void EditingPayment(int id, string description, bool state) { try { var paymentBLL = new PaymentBLL(); paymentBLL.EditPayment(id, description, state); } catch (Exception ex) { throw ex; } }