private void updateComadaButton_Click(object sender, EventArgs e) { Comanda comanda = findComandaById(Int32.Parse(idTextbox.Text)); comanda.StareComanda = stareComandaTexbox.Text; comanda.DataSystem = DateTime.Now; comanda.DataProgramare = DateTime.ParseExact(dataProgramareTextbox.Text, "dd-MM-yyyy", System.Globalization.CultureInfo.InvariantCulture); comanda.DataFinalizare = DateTime.ParseExact(dataFinalizareTextbox.Text, "dd-MM-yyyy", System.Globalization.CultureInfo.InvariantCulture); comanda.KmBord = Int32.Parse(kmBordTextbox.Text); comanda.Descriere = descriereTextbox.Text; comandaRepository.Update(comanda); }
public void TestUpdate() { Comanda comanda = new Comanda(0, "MESA 1", DateTime.Now); comandaRepository.Add(comanda); var nome = comanda.Nome; Assert.NotEqual(0, comanda.Id); comanda.Nome = "MESA 1 (ALTERAÇÃO)"; comandaRepository.Update(comanda); Assert.NotEqual(nome, comanda.Nome); comandaRepository.Remove(comanda.Id); }