Ejemplo n.º 1
0
        public GiftAidController(IOptions <GiftAidSetup> giftAidOptions, IGiftAidService giftAidService, IDonationService donationService)
        {
            _giftAidOptions  = giftAidOptions.Value;
            _giftAidService  = giftAidService;
            _donationService = donationService;

            //Setup GiftAid object based on the saved configuration values
            GiftAidSetup();
        }
 public void ConfigureGiftAidService(GiftAidSetup setup)
 {
     GiftAidSetup = setup;
 }
 public void ConfigureGiftAidService(GiftAidSetup setup)
 {
     throw new NotImplementedException();
 }