Esempio n. 1
0
        public void TryPopulateModel(object model, string modelName)
        {
            if (model == null)
            {
                throw new ArgumentNullException("model");
            }

            if (_form.Exists(modelName))
            {
                TryPopulateModel(model, _form[modelName]);
            }
        }