public async Task <IActionResult> SearshByFIO(string FIO)
        {
            var patiens = _patientService.FindByFIO(FIO);

            return(View("Journal", await patiens.ToListAsync()));
        }