public async Task <IActionResult> GetAllLawyers()
        {
            var lawyers = await _lawyerService.GetAllLawyers();

            return(View(lawyers));
        }