public AdoptController(ApplicationDbContext context, ISystemSettingService systemServices, IFormSerivce formService, ILogger <AdoptController> logger, IStorageService storageService)
 {
     _systemServices = systemServices;
     _context        = context;
     _formService    = formService;
     _logger         = logger;
     _storageService = storageService;
 }
 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;
 }