public void Run(string scenarioTitle, string given, string when, string then)
        {
            Init();
            SeedDataBase.DropAndCreate();
            Seed();

            this.Given(_ => Given(), given)
            .When(_ => When(), when)
            .Then(_ => Then(), then)
            .BDDfy(scenarioTitle);
        }