Esempio n. 1
0
        public PmMethodViewModel(PmConfigViewModel owner)
        {
            if (owner == null)
            {
                throw new ArgumentNullException("owner");
            }

            _owner            = owner;
            PmByProductHeader = Properties.Resources.MethodDetail;
        }
Esempio n. 2
0
        public PmConfiguratorData(PmConfigViewModel owner)
        {
            if (owner == null)
            {
                throw new ArgumentNullException("owner");
            }

            Owner               = owner;
            PmMethodCodes       = new Dictionary <string, EditableBusinessObjectCollection <object> >();
            PmMethodByProduct   = new Dictionary <string, bool>();
            PmMethodByInputMask = new Dictionary <string, string>();
            PmMethodByInputMass = new Dictionary <string, bool>();
        }