Exemplo n.º 1
0
        public override async Task <bool> TryUpdateModelAsync <TModel>(TModel model)
        {
            if (await base.TryUpdateModelAsync(model))
            {
                await BindAttributeRunner.BindOn(this, (IViewModel)model);

                return(true);
            }

            return(false);
        }