Example #1
0
        public IActionResult OtherContaInfo(int id)
        {
            Conta profile = _ContaDAO.FindById(id);

            ViewBag.Title = profile.FirstName + " " + profile.SecondName + " - Conta";

            return(View(profile));
        }