public ShackmeetApiController(ShackmeetsDbContext context, ILogger <ShackmeetApiController> logger, IOptions <AppSettings> appSettings, IChattyService chattyService, IGoogleMapsService googleMapsService)
 {
     this.dbContext         = context;
     this.logger            = logger;
     this.appSettings       = appSettings.Value;
     this.chattyService     = chattyService;
     this.googleMapsService = googleMapsService;
 }
 public NotificationHelper(AppSettings appSettings, IChattyService chattyService)
 {
     this.appSettings   = appSettings;
     this.chattyService = chattyService;
 }