Beispiel #1
0
 public IActionResult GetBill([FromBody] GoldBill bill)
 {
     bill = _bill.CalculateBill(bill);
     return(Ok(bill));
 }