Ejemplo n.º 1
0
        public static PaymentType DeletePaymentType(int id)
        {
            PaymentType pt = PaymentRepository.DeletePaymentType(id);

            if (pt == null)
            {
                return(null);
            }
            return(pt);
        }