Example #1
0
 private void btnAdd_Click(object sender, System.EventArgs e)
 {
     SpService spService = new SpService();
     new SpServiceAddChangeForm(spService).ShowDialog(this);
     this.bsSpService.set_DataSource(SpService.GetAll());
     this.bsSpService.set_Position(this.bsSpService.IndexOf(spService));
 }
 public SpServiceAddChangeForm(SpService spService)
     : this()
 {
     this.m_SpService = spService;
 }
 public SpServiceAddChangeForm()
 {
     this.m_SpService = new SpService();
     this.InitializeComponent();
 }