private void buttonIsplati_Click(object sender, EventArgs e) { Racunovodstvo rac = Racunovodstvo.GetRacunovodstvo(); if (textIsplati.Text != "") { try { float n = float.Parse(textIsplati.Text.ToString()); rac.isplati(Form1.dveDecim(n)); } catch { Console.WriteLine("Krivi unos"); } textIsplati.Text = ""; } }
public void isplati(float novac) { Racunovodstvo rac = Racunovodstvo.GetRacunovodstvo(); rac.isplati(novac); }