Exemple #1
0
        public Donation(Entity.Donation donation, BillingInformation billingInformation)
        {
            ShowPaymentSection  = true;
            IsAdminView         = false;
            DonationInformation = donation;
            donation.BaseType   = "PER";

            BillingInformation = billingInformation;

            SetupDonor(true);
        }
Exemple #2
0
        public Donation()
        {
            ShowPaymentSection  = true;
            IsAdminView         = false;
            DonationInformation = new Entity.Donation {
                BaseType = "PER"
            };

            BillingInformation = new BillingInformation();

            SetupDonor(true);
        }