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