private IActionResult TryGetAlgorithms()
        {
            string               algorithmsPath = fixtureConfig.Value.DllPath;
            ICollection <Type>   algorithms     = fixtureService.GetAlgorithms(algorithmsPath);
            ICollection <string> toReturn       = algorithms.Select(t => t.ToString()).ToList();

            return(Ok(toReturn));
        }