Beispiel #1
0
        public async Task <ActionResult> GetAsync(int?age, string liftPassType, DateTime?skidate)
        {
            var response = await ticketService.CalculatePrice(age, liftPassType, skidate);

            return(Ok(response.RoundUp()));
        }