public SaveWhingeSteps() { ApplicationContext = ScenarioContext.Current.Get <WhingePoolApplicationContext>("ApplicationContext"); Assert.IsNotNull(ApplicationContext); WhingeService = new WhingeService(ApplicationContext); WhingePoolService = new WhingePoolService(ApplicationContext); }
public void ThenAWhingePoolShouldBeCreated(Table table) { var whingePool = table.CreateInstance <WhingePoolEntity>(); WhingePoolService.Save(whingePool); }