public void ScenariosGetAll()
        {
            var res = _scenarioRepository.Get().Result.ToList();

            Assert.NotNull(res);
            Assert.AreEqual(2, res.Count);
        }
 public async Task <IActionResult> Get()
 {
     return(Ok(await _scenarioRepository.Get()));
 }