public void TestInsert() { SpaceCoffee spaceC1 = new SpaceCoffee(); spaceC1.Name = "Sala um"; Response response = spaceCBLL.Insert(spaceC1); Assert.AreEqual(true, response.Success); }
private void btnInsert_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(txtName.Text)) { MessageBox.Show("Preencha o nome."); txtName.Focus(); } else { SpaceCoffee space = new SpaceCoffee(); SpaceCoffeeBLL spaceBLL = new SpaceCoffeeBLL(); space.Name = txtName.Text; Response response = spaceBLL.Insert(space); TableResponse tableResponse = spaceBLL.GetAllTable(); dataGridView.DataSource = tableResponse.DataTable; dataGridView.Columns["Nome"].Width = 270; MessageBox.Show(response.Message); //chamar método que verifica se já tem cadastrado duas salas de café, se já tem, o botão cadastrar ficadesativado Response r0 = spaceBLL.ExistTwoSpaces(); if (r0.Success) { btnInsert.Enabled = false; MessageBox.Show("Duas salas de café cadastradas, vá ao próximo passo."); this.Close(); } txtName.Focus(); txtName.Clear(); } }