public VisitPurposeSelectionViewModel(VisitPurposeSelectionListViewModel parent, VisitPurposeSelection model)
        {
            Parent         = parent;
            Model          = model;
            IsTempSelected = model.IsSelected;

            //commands
            CheckCommand = new RelayCommand(CheckCommandMethod);
        }
 public VisitPurposeSelection(VisitPurposeSelection other) : this(other.Type, other.State, other.IsSelected)
 {
 }