public async Task <IActionResult> GetAll()
        {
            var role = await _dispatchService.GetAllAsync();

            return(Ok(role));
        }