Esempio n. 1
0
 public SoftwareRoleAdd(SoftwareRoleView view, int code)
 {
     viewForm = view;
     Code     = code;
     InitializeComponent();
     //BindDropDown();
     this.Text = this.Text + " (Edit)";
 }
Esempio n. 2
0
 public static SoftwareRoleView Instance()
 {
     if (sForm == null)
     {
         sForm = new SoftwareRoleView();
     }
     return(sForm);
 }
Esempio n. 3
0
 public SoftwareRoleAdd(SoftwareRoleView view)
 {
     viewForm = view;
     Code     = 0;
     InitializeComponent();
     // BindDropDown();
     this.Text = this.Text + " (Add)";
 }