public IActionResult MergeSort([FromQuery] int arraySize) { var result = _sortService.MergeSort(arraySize); return(Ok(result)); }