Ejemplo n.º 1
0
        public async Task <IActionResult> CheckingAsync(Guid id)
        {
            var itam = _toDo.GetItam(id);
            await _toDo.ChangeConditionAsync(itam);

            _indmen = new IndexMeneger
            {
                Itams = _toDo.GetItams()
            };
            return(View("Index", _indmen));
        }