public void GetAll_Not_Null_Not_Empty()
        {
            var fermentables = _fermentableRepository.GetAll();

            Assert.NotNull(fermentables);
            Assert.True(fermentables.Any());
        }
 public IActionResult GetAll()
 {
     return(Ok(_fermentableRepository.GetAll()));
 }