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;
 }
Example #2
0
 public FosterController(IRescueGroupsService rescueGroupsService)
 {
     _rescueGroupsService = rescueGroupsService;
 }