Example #1
0
        public D7Controller()
        {
            this.A5Repository = new A5Repository();
            this.D6Repository = new D6Repository();
            this.D7Repository = new D7Repository();

            selectOptionYN = new List <SelectOption>()
            {
                new SelectOption()
                {
                    Text = "", Value = ""
                },
                new SelectOption()
                {
                    Text = "Y:是", Value = "Y"
                },
                new SelectOption()
                {
                    Text = "N:否", Value = "N"
                }
            };

            selectOptionRange = new List <SelectOption>()
            {
                new SelectOption()
                {
                    Text = "", Value = ""
                },
                new SelectOption()
                {
                    Text = "1:以上", Value = "1"
                },
                new SelectOption()
                {
                    Text = "0:以下", Value = "0"
                }
            };

            ProcessStatusList psl = new ProcessStatusList();

            selectOptionStatus = psl.statusOption;
            selectOptionStatus.Insert(0, new SelectOption()
            {
                Text = "", Value = ""
            });
        }
Example #2
0
 public D0Controller()
 {
     this.D0Repository = new D0Repository();
     this.D6Repository = new D6Repository();
 }