public void GetRecipesByDishReturnsOkResult()
        {
            //Act
            var result = controller.GetRecipesByDish("Блины");

            //Assert
            Assert.IsType <OkObjectResult>(result);
        }