public async Task <IActionResult> GetAllWithEvidences()
        {
            var result = await _missionService.GetAllWithEvidencesAsync();

            return(StatusCode(result.HttpStatusCode, result.Data));
        }