private void btnReturn_Click(object sender, EventArgs e) { var frmAddnewRental = new AddRental(_rentalsLogic, _client.Id, false); frmAddnewRental.ShowDialog(); FillForm(); }
private void btnRentalAdd_Click(object sender, EventArgs e) { if (_client != null) { var frmAddnewRental = new AddRental(_rentalsLogic, _client.Id, true); frmAddnewRental.ShowDialog(); FillForm(); } }