AwesomeSauce.Binding.EntityModelBinder.Bind C# (CSharp) Method

Bind() public method

public Bind ( Type type, IBindingContext context ) : object
type System.Type
context IBindingContext
return object
        public object Bind(Type type, IBindingContext context)
        {
            object model = Activator.CreateInstance(type);
            context.BindProperties(model);
            return model;
        }
EntityModelBinder