Beispiel #1
0
        public IActionResult Edit(Guid guid)
        {
            var user = _kullaniciService.GetByGuid(guid);

            if (user == null)
            {
                return(View("Error"));
            }
            return(View(user));
        }