Example #1
0
 public BraintreeController(IBraintreePaymentService braintreePaymentService,
                            IUniquePageService uniquePageService, CartModel cartModel)
 {
     _braintreePaymentService = braintreePaymentService;
     _uniquePageService       = uniquePageService;
     _cartModel = cartModel;
 }
Example #2
0
 public GolfController(ApplicationDbContext context,
                       ISystemSettingService systemServices, IEmailSender emailService, IBraintreePaymentService paymentService, ILogger <GolfController> logger)
 {
     _systemServices = systemServices;
     _emailService   = emailService;
     _context        = context;
     _paymentService = paymentService;
     _logger         = logger;
 }
 public AdoptController(ApplicationDbContext context,
                        ISystemSettingService systemServices, IEmailSender emailService, IRescueGroupsService rescuegroupService, IBraintreePaymentService paymentService,
                        IFormSerivce formService, ILogger <AdoptController> logger, IStorageService storageService)//, IContentfulClient contentfulClient)
 {
     _systemServices     = systemServices;
     _emailService       = emailService;
     _context            = context;
     _rescuegroupService = rescuegroupService;
     _paymentService     = paymentService;
     _formService        = formService;
     _logger             = logger;
     _storageService     = storageService;
     //_contentfulClient = contentfulClient;
 }