Guest User

Untitled

a guest
Oct 12th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public override bool IsValid(object valores)
  2. {
  3. try
  4. {
  5. int kilometraje = elVehiculo.kilometraje;
  6. var proximoCambioDeAceite = Convert.ToInt32(valores);
  7.  
  8. return proximoCambioDeAceite > kilometraje;
  9.  
  10. }
  11. catch (Exception)
  12. {
  13. return base.IsValid(valores);
  14. }
  15.  
  16. }
  17. }
Add Comment
Please, Sign In to add comment