public ConversionController(
     IVanillaParserService vanillaParserService,
     IMapsProxy mapService,
     ILogger <ConversionController> logger) : base(logger)
 {
     this.mapService           = mapService;
     this.vanillaParserService = vanillaParserService;
 }
 public void Init()
 {
     this.vanillaParserService = new VanillaParserService();
 }