-
Notifications
You must be signed in to change notification settings - Fork 0
/
cCombustible.cs
40 lines (36 loc) · 1.12 KB
/
cCombustible.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace tp_final
{
public class cCombustible
{
public float actual { get; set; } // en porcentaje (%)
public cCombustible()
{
this.actual = 100;
}
/// <summary>
/// Basandonos en los nodos recorridos del vehiculo, asigno un nuevo porcentaje de combustible
/// </summary>
/// <param name="vehiculo">Vehiculo a inspeccionar</param>
/// <returns>Porcentaje nuevo de combustible</returns>
public float getActual(cVehiculo vehiculo)
{
if(vehiculo is cFurgon)
{
return this.actual -= ((vehiculo.nodosRecorridos * 21.2F) / 33.3F) * cFurgon.ahorroFurgon;
}
else if(vehiculo is cFurgoneta)
{
return this.actual -= ((vehiculo.nodosRecorridos * 7.6F) / 33.3F);
}
else
{
return this.actual -= ((vehiculo.nodosRecorridos * 15.2F) / 33.3F);
}
}
}
}