Exemple #1
0
        public DeclinePaymentViewModel(Core.Domain.Accounting.Payment payment, DeclinePaymentCommand declinePaymentCommand)
        {
            Require.NotNull(payment, "payment");
            Require.NotNull(declinePaymentCommand, "declinePaymentCommand");

            Payment = payment;
            DeclinePaymentCommand = declinePaymentCommand;
        }
Exemple #2
0
 public DeclinePaymentViewModel(Core.Domain.Accounting.Payment payment) : this(payment, new DeclinePaymentCommand())
 {
 }