To create cascading view models

public class MultiMoveReqViewModel : OfferingViewModel
    {
        public MultiMoveReqViewModel(Person person)
            : base("MULTIMOVEREQ", person)
        {
            this.showTitle = 1;
 
        }
 
        public string _multiStaff { get; set; }
 
    }