Esempio n. 1
0
        public async Task <ActionResult> Create(ManageCountryModel contry)
        {
            contry.EventAction = 'I';
            contry.UserId      = CurrentUser.UserId;
            var response = await _Country.AddUpdateCountry(contry);

            TempData["response"] = response;
            return(RedirectToAction("Index"));
        }