예제 #1
0
파일: Form1.cs 프로젝트: firaszouari/TP2
 private void addMouvement(String type)
 {
     if (TxtMt.Text != "")
     {
         Mouvements mvt = new Mouvements(Datm.Value, type, Convert.ToDouble(TxtMt.Text));
         c.nouveauMvt(mvt);
     }
 }
예제 #2
0
 public void nouveauMvt(Mouvements m)
 {
     list_mouv.Add(m);
 }