コード例 #1
0
        public async Task <ActionResult> Add(Lab lab, string id)
        {
            bool result = await lab.Push(id);

            if (result)
            {
                return(Redirect("/Index"));
            }
            else
            {
                return(View("~/Views/Shared/Error.cshtml"));
            }
        }