public decimal?GetOtherTaxes(CruiseDTO cruise) { //TODO: Based on the CruisesDTO object, gets if there is some other tax that not the port charge return(_cruiseService.GetOtherTaxes(cruise)); }
public decimal?GetOtherTaxes(decimal cabinValue, decimal portCharge, decimal totalValue) { return(_cruiseService.GetOtherTaxes(cabinValue, portCharge, totalValue)); }
public ActionResult <decimal> Get(decimal cabinValue, decimal portCharge, decimal totalValue) { return(_cruiseService.GetOtherTaxes(cabinValue, portCharge, totalValue)); }