Esempio n. 1
0
        public async Task <IActionResult> Create(Rule Rule)
        {
            if (ModelState.IsValid)
            {
                await ruleRepository.Create(User, Rule);

                return(RedirectToAction(nameof(Index), new { Rule.DeviceId }));
            }

            return(View(Rule));
        }