public NotificationController(IPokemonEncounterService notifier, NotificationContext notificationContext)
 {
     _notifier            = notifier;
     _notificationContext = notificationContext;
 }
 public PokemonEncounterController(IPokemonEncounterService pokemonEncounterService)
 {
     _pokemonEncounterService = pokemonEncounterService;
 }