private void timer1_Tick(object sender, EventArgs e)
 {
     txtLitros.Value += 1;
     _objSurtidora.SurtirCombustible(int.Parse(txtLitros.Value.ToString()));
 }
 private void timer1_Tick(object sender, EventArgs e)
 {
     txtLitros.Value += 1; //Incrementa el contador en pantalla
     //_objSurtidora.SurtirCombustible(int.Parse(txtLitros.Value.ToString()));
     _objSurtidora.SurtirCombustible(1);
 }