FCS_Funding.Models.Donor.Donor C# (CSharp) Method

Donor() private method

private Donor ( ) : System
return System
        public Donor()
        {
            Donations = new HashSet<Donation>();
            DonorContacts = new HashSet<DonorContact>();
            GrantProposals = new HashSet<GrantProposal>();
            Reminders = new HashSet<Reminder>();
        }
Donor